/** * Add the specified persistent object to ORMSet * * @param value the persistent object */ public void add(Rce value) { if (value != null) { super.add(value, value._ormAdapter); } }
/** * Add the specified persistent object to ORMSet * * @param value the persistent object */ public void add(BinaryData value) { if (value != null) { super.add(value, value._ormAdapter); } }