Interface OnComponentSelected
-
- All Known Implementing Classes:
ProductGroupComponentsActivity
public interface OnComponentSelected
Listener for selecting components
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onComponentSpinnerSelected(Component component, AttributeOption attributes, int tabPosition)
Callback when selecting an item in the spinnervoid
onMultipleComponentSelected(Component component, boolean isSelected, int tabPosition)
Callback when selecting aComponent
and the max selection is greater than onevoid
onSingleComponentSelected(Component component, boolean isSelected, int tabPosition)
Callback when selecting aComponent
and the max selection is one
-
-
-
Method Detail
-
onSingleComponentSelected
void onSingleComponentSelected(Component component, boolean isSelected, int tabPosition)
Callback when selecting aComponent
and the max selection is one
-
onMultipleComponentSelected
void onMultipleComponentSelected(Component component, boolean isSelected, int tabPosition)
Callback when selecting aComponent
and the max selection is greater than one
-
onComponentSpinnerSelected
void onComponentSpinnerSelected(Component component, AttributeOption attributes, int tabPosition)
Callback when selecting an item in the spinner
-
-