/** * Remove the specified persistent object from ORMSet * * @param value the persistent object */ public void remove(Rce value) { super.remove(value, value._ormAdapter); }
/** * Remove the specified persistent object from ORMSet * * @param value the persistent object */ public void remove(BinaryData value) { super.remove(value, value._ormAdapter); }
/** * 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); } }