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 Object
getCoreExpression()
Returns the value of the 'Core Expression' attribute.String
getCoreExpressionId()
Returns the value of the 'Core Expression Id' attribute.void
setCoreExpression(Object value)
Sets the value of the 'Core Expression
' attribute.void
setCoreExpressionId(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
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(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
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(Object value)
Sets the value of the 'Core Expression
' attribute.- Parameters:
value
- the new value of the 'Core Expression' attribute.- See Also:
getCoreExpression()
-
-