DrawingItemState
Enumeration DrawingItemState describes the state of DrawingItems.
@IntDef({DIS_DEFAULT,DIS_SELECTED})
@Retention(RetentionPolicy.CLASS)
public @interface EnumDrawingItemState {
// The state of the DrawingItem is the default state.
int DIS_DEFAULT = 1;
// The state of the DrawingItem is selected.
int DIS_SELECTED = 2;
}