In its current form, PtcimCollection.add() doesn't seem to have any effect on the underlying model (it only constructs a temporary ArrayList and adds two objects to it).
@Override
public boolean add(PtcimObject e) {
assert e.getId() != null;
List<Object> args = new ArrayList<Object>();
args.add(association);
args.add(e);
return true;
}
In its current form, PtcimCollection.add() doesn't seem to have any effect on the underlying model (it only constructs a temporary ArrayList and adds two objects to it).