Interface MCategory
-
- All Superinterfaces:
MApplicationElement,MLocalizable
public interface MCategory extends MApplicationElement, MLocalizable
A representation of the model object 'Category'.This defines a logical grouping of Commands in order to facilitate showing the current set of Commands in dialogs, lists etc
- Since:
- 1.0
- Restriction:
- This interface is not intended to be implemented by clients.
The following features are supported:
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDescription()Returns the value of the 'Description' attribute.java.lang.StringgetLocalizedDescription()Returns the value of the 'Localized Description' attribute.java.lang.StringgetLocalizedName()Returns the value of the 'Localized Name' attribute.java.lang.StringgetName()Returns the value of the 'Name' attribute.voidsetDescription(java.lang.String value)Sets the value of the 'Description' attribute.voidsetName(java.lang.String value)Sets the value of the 'Name' attribute.-
Methods inherited from interface org.eclipse.e4.ui.model.application.MApplicationElement
getContributorURI, getElementId, getPersistedState, getTags, getTransientData, setContributorURI, setElementId
-
Methods inherited from interface org.eclipse.e4.ui.model.application.ui.MLocalizable
updateLocalization
-
-
-
-
Method Detail
-
getName
java.lang.String getName()
Returns the value of the 'Name' attribute.The name to be displayed for this category.
- Returns:
- the value of the 'Name' attribute.
- See Also:
setName(String)
-
setName
void setName(java.lang.String value)
Sets the value of the 'Name' attribute.- Parameters:
value- the new value of the 'Name' attribute.- See Also:
getName()
-
getDescription
java.lang.String getDescription()
Returns the value of the 'Description' attribute.The description to display for this category.
- Returns:
- the value of the 'Description' attribute.
- See Also:
setDescription(String)
-
setDescription
void setDescription(java.lang.String value)
Sets the value of the 'Description' attribute.- Parameters:
value- the new value of the 'Description' attribute.- See Also:
getDescription()
-
getLocalizedName
java.lang.String getLocalizedName()
Returns the value of the 'Localized Name' attribute. The default value is"".- Returns:
- the value of the 'Localized Name' attribute.
-
getLocalizedDescription
java.lang.String getLocalizedDescription()
Returns the value of the 'Localized Description' attribute.- Returns:
- the value of the 'Localized Description' attribute.
-
-