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