Interface MCoreExpression
-
- All Superinterfaces:
MApplicationElement,MExpression
public interface MCoreExpression extends MExpression
A representation of the model object 'Core Expression'.A specific kind of expression used by the Eclipse Workbench.
- 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.ObjectgetCoreExpression()Returns the value of the 'Core Expression' attribute.java.lang.StringgetCoreExpressionId()Returns the value of the 'Core Expression Id' attribute.voidsetCoreExpression(java.lang.Object value)Sets the value of the 'Core Expression' attribute.voidsetCoreExpressionId(java.lang.String value)Sets the value of the 'Core Expression Id' attribute.-
Methods inherited from interface org.eclipse.e4.ui.model.application.MApplicationElement
getContributorURI, getElementId, getPersistedState, getTags, getTransientData, setContributorURI, setElementId
-
-
-
-
Method Detail
-
getCoreExpressionId
java.lang.String getCoreExpressionId()
Returns the value of the 'Core Expression Id' attribute. The default value is"".Developers: Add more detailed documentation by editing this comment in org.eclipse.ui.model.workbench/model/UIElements.ecore. There is a GenModel/documentation node under each type and attribute.
- Returns:
- the value of the 'Core Expression Id' attribute.
- See Also:
setCoreExpressionId(String)
-
setCoreExpressionId
void setCoreExpressionId(java.lang.String value)
Sets the value of the 'Core Expression Id' attribute.- Parameters:
value- the new value of the 'Core Expression Id' attribute.- See Also:
getCoreExpressionId()
-
getCoreExpression
java.lang.Object getCoreExpression()
Returns the value of the 'Core Expression' attribute.Developers: Add more detailed documentation by editing this comment in org.eclipse.ui.model.workbench/model/UIElements.ecore. There is a GenModel/documentation node under each type and attribute.
- Returns:
- the value of the 'Core Expression' attribute.
- See Also:
setCoreExpression(Object)
-
setCoreExpression
void setCoreExpression(java.lang.Object value)
Sets the value of the 'Core Expression' attribute.- Parameters:
value- the new value of the 'Core Expression' attribute.- See Also:
getCoreExpression()
-
-