| java.lang.Object org.netbeans.modules.vmd.api.inspector.common.ArrayPropertyOrderingController
ArrayPropertyOrderingController | public class ArrayPropertyOrderingController implements InspectorOrderingController(Code) | | Implementation of InspectorOrderingController. This class sorts InspectorFolders in the Mobility Visual Designer Navigator
according of their position in the property array. It means when this presenter is
attached to the DesignComponent then DesignComponents from indicated array property of this
DesignComponent will be displayed in Mobility Visual Designer Navigator in the same
order like in array.
|
ArrayPropertyOrderingController | public ArrayPropertyOrderingController(String propertyName, Integer order, TypeID supportedTypeID)(Code) | | Creates ArrayPropertyOrderingController.
Parameters: order - Insteger number of the ordering controller, higher number means higher position in the tree branch Parameters: supportedTypeID - TypeID accepted by this ordering controller, all TypeIDs which inherits fromgiven TypeID are also accepted by this ordering controller |
getOrder | public Integer getOrder()(Code) | | Returns order Integer number for list of folders sorted by method getOrdered.
Higher Integer number means that sorted list of folders has higher priority when
it's necessary to order not only folders but also lists (List) of sorted folders
in the same tree branch. For example if in the same tree branch there is two or more InspectorOrderingController
then ordered lists need to be ordered by Integer number returns by this method.
Integer number, when null then sorted list has lowest possible priority |
isTypeIDSupported | public boolean isTypeIDSupported(DesignDocument document, TypeID typeID)(Code) | | Checks if given TypeId is supported by this ordering controller.
Parameters: document - current DesignDocument Parameters: typeID - typeID to check Boolen.TRUE when TypyID is supported, Boolean.FALSE when TypeID isnot supported |
|
|