Package org.onosproject.ui
Class UiView
- java.lang.Object
-
- org.onosproject.ui.UiView
-
- Direct Known Subclasses:
UiViewHidden
public class UiView extends java.lang.ObjectRepresents a user interface view addition.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classUiView.CategoryDesignates the navigation menu category.
-
Constructor Summary
Constructors Constructor Description UiView(UiView.Category category, java.lang.String id, java.lang.String label)Creates a new user interface view descriptor.UiView(UiView.Category category, java.lang.String id, java.lang.String label, java.lang.String iconId)Creates a new user interface view descriptor.UiView(UiView.Category category, java.lang.String id, java.lang.String label, java.lang.String iconId, java.lang.String helpPageUrl)Creates a new user interface view descriptor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UiView.Categorycategory()Returns the navigation category.booleanequals(java.lang.Object obj)inthashCode()java.lang.StringhelpPageUrl()Returns the help page URL for a specific view.java.lang.StringiconId()Returns the icon identifier.java.lang.Stringid()Returns the view identifier.java.lang.Stringlabel()Returns the view label.java.lang.StringtoString()
-
-
-
Constructor Detail
-
UiView
public UiView(UiView.Category category, java.lang.String id, java.lang.String label)
Creates a new user interface view descriptor. The navigation item will appear in the navigation menu under the specified category.- Parameters:
category- view categoryid- view identifierlabel- view label
-
UiView
public UiView(UiView.Category category, java.lang.String id, java.lang.String label, java.lang.String iconId)
Creates a new user interface view descriptor. The navigation item will appear in the navigation menu under the specified category, with the specified icon adornment.Note: see the
glyphMappingstructure inicon.jsfor valid icon identifiers.- Parameters:
category- view categoryid- view identifierlabel- view labeliconId- icon id
-
UiView
public UiView(UiView.Category category, java.lang.String id, java.lang.String label, java.lang.String iconId, java.lang.String helpPageUrl)
Creates a new user interface view descriptor. The navigation item will appear in the navigation menu under the specified category, with the specified icon adornment and specified help page.Note: see the
glyphMappingstructure inicon.jsfor valid icon identifiers.- Parameters:
category- view categoryid- view identifierlabel- view labeliconId- icon idhelpPageUrl- help page URL
-
-
Method Detail
-
category
public UiView.Category category()
Returns the navigation category.- Returns:
- navigation category
-
id
public java.lang.String id()
Returns the view identifier.- Returns:
- view ID
-
label
public java.lang.String label()
Returns the view label.- Returns:
- view label
-
iconId
public java.lang.String iconId()
Returns the icon identifier.- Returns:
- icon ID
-
helpPageUrl
public java.lang.String helpPageUrl()
Returns the help page URL for a specific view.- Returns:
- help page URL
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-