Interface AndroidEntryPoint.IExecutionOrder
-
- All Superinterfaces:
Comparable<AndroidEntryPoint.IExecutionOrder>
- All Known Implementing Classes:
AndroidEntryPoint.ExecutionOrder
,AndroidEntryPointLocator.AndroidPossibleEntryPoint
- Enclosing class:
- AndroidEntryPoint
public static interface AndroidEntryPoint.IExecutionOrder extends Comparable<AndroidEntryPoint.IExecutionOrder>
Implement this interface to put entitys into the AndroidModel. Currently only AndroidEntryPoints are supportet directly. If you want to add other stuff you might want to subclass AbstractAndroidModel.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getOrderValue()
Returns an integer-representation of the ExecutionOrder.AndroidEntryPoint.ExecutionOrder
getSection()
AbstractAndroidModel inserts code at section switches.-
Methods inherited from interface java.lang.Comparable
compareTo
-
-
-
-
Method Detail
-
getOrderValue
int getOrderValue()
Returns an integer-representation of the ExecutionOrder.
-
getSection
AndroidEntryPoint.ExecutionOrder getSection()
AbstractAndroidModel inserts code at section switches. There are eight hardcoded sections. Sections are derived by rounding the integer-representation.- Returns:
- the section of this entity
-
-