Package com.orchestranetworks.ui.view
Interface UIView
-
- All Known Subinterfaces:
UIHierarchicalView
,UITabularView
,UITileView
public interface UIView
Provides information on custom view.- Since:
- 6.1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UserMessage
getLabel()
Returns Localized label and description associated with the view.Profile
getOwnerProfile()
Returns the owner of the viewString
getPublicationName()
Returns the value of the publication name.UICustomViewKey
getViewKey()
Returns the key of the view.boolean
isHierarchical()
Returnstrue
if the view mode is hierarchyboolean
isTabular()
Returnstrue
if the view mode is simple tabularboolean
isTile()
Returnstrue
if 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()
Returnstrue
if the view mode is hierarchy
-
isTabular
boolean isTabular()
Returnstrue
if the view mode is simple tabular
-
isTile
boolean isTile()
Returnstrue
if the view mode is tile
-
getViewKey
UICustomViewKey getViewKey()
Returns the key of the view.
-
-