public interface IUserTab
Modifier and Type | Method and Description |
---|---|
boolean |
getCanDelete()
Determines if the current user can delete the tab.
|
boolean |
getCanEdit()
Determines if the current user can edit the tab's properties.
|
boolean |
getCanRename()
Determines if the current user can rename the tab.
|
boolean |
getCanSave()
Determines if the current user can save edits to the tab.
|
boolean |
getCanSaveAs()
Determines if the current user can copy the tab.
|
boolean |
getCanShare()
Determines if the current user can modify the sharing properties the tab.
|
String |
getContentThingID()
Gets the ThingID of the content displayed by the tab.
|
String |
getContentURL()
Sets the URL to the content displayed in the tab.
|
boolean |
getDirty()
Determines if the tab has unsaved changes.
|
String |
getDisplayName()
Gets the tab's display name.
|
String |
getID()
Gets the tab's unique ID.
|
int |
getIndex()
Gets the display index of the tab within the tab set.
|
String |
getTabIconURL()
Gets the URL of the icon to display for the tab.
|
int |
getType()
Gets the tab type, see Tab Types.
|
boolean |
isHidden() |
void |
save()
Saves any changes made to the tab's properties.
|
void |
setContentURL(String URL)
Sets the URL of the content displayed by the tab.
|
void |
setDisplayName(String displayName)
Sets the tab's display name.
|
void |
setHidden(boolean hidden) |
void |
setIndex(int index)
Sets the display index of the tab within the tab set.
|
void |
setTabIconURL(String iconURL)
Sets the URL for the icon to display for the tab.
|
void |
setType(int tabType)
Gets the tab type for the tab.
|
int getType()
void setType(int tabType)
tabType
- the tab type, see Tab Types.String getID()
String getDisplayName()
void setDisplayName(String displayName) throws Exception
displayName
- The new display name string.Exception
String getTabIconURL()
void setTabIconURL(String iconURL)
iconURL
- The new icon URL as a string.String getContentURL()
void setContentURL(String URL)
The
- URL the content URL as a string.String getContentThingID()
boolean isHidden()
void setHidden(boolean hidden)
int getIndex()
void setIndex(int index)
index
- The new display index.boolean getDirty()
boolean getCanSave()
boolean getCanSaveAs()
boolean getCanRename()
boolean getCanEdit()
boolean getCanDelete()
boolean getCanShare()