Interface ModificationIF
- All Superinterfaces:
ConfigurableItemIF, IdentifierAble, Serializable
- All Known Implementing Classes:
Modification
Modifications by a customer of a configuration item in the model transformation configuration.
The child of this configuration item is what has been modified.
For each item there is only one modification which modifies it.
Example:
Original:
A
|
--- B
|
--- BC
|
--- C
|
--- D
Customer:
Root
|
---Modification1
| |
| --- Parameter modified=BC
| |
| --- BC*
|
---Modification2
|
--- Parameter modified=D
|
--- D*
Result:
A
|
--- B
|
--- BC*
|
--- C
|
--- D*
The item BC is modified.
The item D is modified.
- Version:
- 11.4.2
- Author:
- jmback
-
Method Summary
Modifier and TypeMethodDescriptionGet the original configuration item which is modified by this modification.Methods inherited from interface ConfigurableItemIF
checkConstraints, checkConstraints, getBaseItem, getConfigurableItems, getConfigurationTag, getItem, getKnownParameters, getName, getParentItem, getParentItem, setBaseItem, setConfigurationContext, setConfigurationTag, setParentMethods inherited from interface IdentifierAble
getId, setId
-
Method Details
-
getModified
ConfigurationItemIF getModified()Get the original configuration item which is modified by this modification. The id of that item is stored in parameter "modified".- Returns:
- modified configuration item if there is one
-