Package com.orchestranetworks.ui.view
Interface UICustomViewKey
-
public interface UICustomViewKeyProvides information on custom view key.- Since:
- 6.1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stringformat()Returns a persistent identifier of a view key.booleanisHierarchical()Returnstrueif this key identifies a hierarchy view (either a customized or a default).booleanisModelDriven()Returnstrueif this key identifies a default view.booleanisTabular()Returnstrueif this key identifies a tabular view .booleanisTile()Returnstrueif this key identifies a tile view.
-
-
-
Method Detail
-
format
String format()
Returns a persistent identifier of a view key.- See Also:
UICustomViewKeyFactory.parse(String)
-
isTabular
boolean isTabular()
Returnstrueif this key identifies a tabular view .
-
isHierarchical
boolean isHierarchical()
Returnstrueif this key identifies a hierarchy view (either a customized or a default).
-
isModelDriven
boolean isModelDriven()
Returnstrueif this key identifies a default view.
-
isTile
boolean isTile()
Returnstrueif this key identifies a tile view.
-
-