Package com.orchestranetworks.ui.view
Interface UIView
-
- All Known Subinterfaces:
UIHierarchicalView,UITabularView,UITileView
public interface UIViewProvides information on custom view.- Since:
- 6.1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UserMessagegetLabel()Returns Localized label and description associated with the view.ProfilegetOwnerProfile()Returns the owner of the viewStringgetPublicationName()Returns the value of the publication name.UICustomViewKeygetViewKey()Returns the key of the view.booleanisHierarchical()Returnstrueif the view mode is hierarchybooleanisTabular()Returnstrueif the view mode is simple tabularbooleanisTile()Returnstrueif the view mode is tile
-
-
-
Method Detail
-
getLabel
UserMessage getLabel()
Returns Localized label and description associated with the view.
-
getPublicationName
String getPublicationName()
Returns the value of the publication name.
-
getOwnerProfile
Profile getOwnerProfile()
Returns the owner of the view
-
isHierarchical
boolean isHierarchical()
Returnstrueif the view mode is hierarchy
-
isTabular
boolean isTabular()
Returnstrueif the view mode is simple tabular
-
isTile
boolean isTile()
Returnstrueif the view mode is tile
-
getViewKey
UICustomViewKey getViewKey()
Returns the key of the view.
-
-