public class DynamicAttributeOperation extends Operation
| Red (tfeng) |
| Yellow (tfeng) |
GTIngredient.FieldIterator_parseTreeWriterFIELD_SEPARATOR| Constructor and Description |
|---|
DynamicAttributeOperation(GTIngredientList owner)
Construct an operation within the given list as its owner.
|
DynamicAttributeOperation(GTIngredientList owner,
java.lang.String values)
Construct an operation within the given list as its owner and initialize
all the elements with the given values, which are a string encoding of
those elements.
|
DynamicAttributeOperation(GTIngredientList owner,
java.lang.String attributeName,
java.lang.String attributeClass,
java.lang.String attributeValue)
Construct an operation within the given list as its owner and with the
given value to each of its elements..
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
_reparse()
Generate the parse tree for the attributeValue element again.
|
ChangeRequest |
getChangeRequest(Pattern pattern,
Replacement replacement,
MatchResult matchResult,
NamedObj patternObject,
NamedObj replacementObject,
NamedObj hostObject)
Get the change request to update the object in the host model.
|
GTIngredientElement[] |
getElements()
Get the array of elements defined in this GTIngredient.
|
java.lang.Object |
getValue(int index)
Get the value of the index-th elements.
|
java.lang.String |
getValues()
Get a string that describes the values of all the elements.
|
boolean |
isAttributeClassEnabled()
Return whether the attributeClass element is enabled.
|
boolean |
isAttributeNameEnabled()
Return whether the attributeName element is enabled.
|
boolean |
isAttributeValueEnabled()
Return whether the attributeValue element is enabled.
|
void |
setAttributeClass(java.lang.String attributeClass)
Set the value of the attributeClass element.
|
void |
setAttributeName(java.lang.String attributeName)
Set the value of the attributeName element.
|
void |
setAttributeValue(java.lang.String attributeValue)
Set the value of the attributeValue element.
|
void |
setValue(int index,
java.lang.Object value)
Set the value of the index-th element.
|
void |
setValues(java.lang.String values)
Set the values of all the elements with a string that describes them.
|
void |
validate()
Validate the enablements and values of all the elements.
|
_decodeBooleanField, _decodeStringField, _encodeBooleanField, _encodeStringField, _escapeElementString, _findMatchingParen, _findSeparator, _unescapeElementString, disableAll, enableAll, getOwner, isApplicable, isEnabled, setEnabled, toStringpublic DynamicAttributeOperation(GTIngredientList owner)
owner - The list as the owner of the constructed GTIngredientList.public DynamicAttributeOperation(GTIngredientList owner, java.lang.String values)
owner - The list as the owner of the constructed GTIngredientList.values - The string encoding of the values of the elements.public DynamicAttributeOperation(GTIngredientList owner, java.lang.String attributeName, java.lang.String attributeClass, java.lang.String attributeValue)
owner - The list as the owner of the constructed GTIngredientList.attributeName - Value of the attributeName element.attributeClass - Value of the attributeClass element.attributeValue - Value of the attributeValue element.public ChangeRequest getChangeRequest(Pattern pattern, Replacement replacement, MatchResult matchResult, NamedObj patternObject, NamedObj replacementObject, NamedObj hostObject) throws IllegalActionException
getChangeRequest in class Operationpattern - The pattern of the transformation rule.replacement - The replacement of the transformation rule.matchResult - The match result.patternObject - The object in the pattern, or null.replacementObject - The object in the replacement that corresponds
to the object in the pattern.hostObject - The object in the host model corresponding to the
object in the replacement.IllegalActionException - If error occurs in generating the
change request.public GTIngredientElement[] getElements()
getElements in class GTIngredientpublic java.lang.Object getValue(int index)
getValue in class GTIngredientindex - The index.setValue(int, Object)public java.lang.String getValues()
getValues in class GTIngredientsetValues(String)public boolean isAttributeClassEnabled()
public boolean isAttributeNameEnabled()
public boolean isAttributeValueEnabled()
public void setAttributeClass(java.lang.String attributeClass)
attributeClass - The value of the attributeClass element.public void setAttributeName(java.lang.String attributeName)
attributeName - The value of the attributeName element.public void setAttributeValue(java.lang.String attributeValue)
attributeValue - The value of the attributeValue element.public void setValue(int index,
java.lang.Object value)
setValue in class GTIngredientindex - The index.value - The value.getValue(int)public void setValues(java.lang.String values)
setValues in class GTIngredientvalues - A string that describes the new values of all the
elements.getValues()public void validate()
throws ValidationException
validate in class GTIngredientValidationException - If some elements are invalid.protected void _reparse()
throws IllegalActionException
IllegalActionException - If error occurs in the parse tree
generation.