Interface MParameter
-
- All Superinterfaces:
MApplicationElement
public interface MParameter extends MApplicationElement
A representation of the model object 'Parameter'.This defines the value of a Parameter to be used by a Command.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getName()
Returns the value of the 'Name' attribute.String
getValue()
Returns the value of the 'Value' attribute.void
setName(String value)
Sets the value of the 'Name
' attribute.void
setValue(String value)
Sets the value of the 'Value
' attribute.-
Methods inherited from interface org.eclipse.e4.ui.model.application.MApplicationElement
getContributorURI, getElementId, getPersistedState, getTags, getTransientData, setContributorURI, setElementId
-
-
-
-
Method Detail
-
getName
String getName()
Returns the value of the 'Name' attribute.This is the name of this parameter.
- Returns:
- the value of the 'Name' attribute.
- See Also:
setName(String)
-
setName
void setName(String value)
Sets the value of the 'Name
' attribute.- Parameters:
value
- the new value of the 'Name' attribute.- See Also:
getName()
-
getValue
String getValue()
Returns the value of the 'Value' attribute.This is the value of this parameter.
- Returns:
- the value of the 'Value' attribute.
- See Also:
setValue(String)
-
setValue
void setValue(String value)
Sets the value of the 'Value
' attribute.- Parameters:
value
- the new value of the 'Value' attribute.- See Also:
getValue()
-
-