Versions Compared

Key

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

...

Code Block
languagetext
public boolean addValueAt(StructuredValue object, String featureName, Object value, Integer insertAt) {
	...
}


The following code fragment shows how to add values to an object, e.g., System.p1, through ALH API.

Code Block
languagetext
ALH.addValue(System,”p1”,10);                 // System.p1 = [10]
ALH.addValue(System,”p1”,30);                 // System.p1 = [10, 30]
ALH.addValueAt(System,”p1”,20,2);        // System.p1 = [10, 20, 30]

...