Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You can remove an object's value by executing the following code fragment
 

Code Block
languagetext
public boolean removeValue(StructuredValue object, String featureName, Value value) {
...
}

...

If you want to remove more than one value from an object, e.g., the value of the upper bound of the multiplicity is more than one, you can remove them by using the parameter removeAt.
 

Code Block
languagetext
public boolean removeValueAt(StructuredValue object, String featureName, Integer removeAt) {
...
}

...