74757677787980
public Object jdoGetTransactionalObjectId() { return getPName(); } public void jdoReplaceField(int fieldNumber) { throw new JDOUnsupportedOptionException(); }
203204205206207208209210
/** * Adds all of the elements in the specified collection to this collection * (optional operation). */ public boolean addAll(Collection c) { throw new JDOUnsupportedOptionException( "This method is not supported in this implementation"); }
78798081828384
public void jdoReplaceField(int fieldNumber) { throw new JDOUnsupportedOptionException(); } public void jdoReplaceFields(int[] fieldNumbers) { throw new JDOUnsupportedOptionException(); }
82838485868788
public void jdoReplaceFields(int[] fieldNumbers) { throw new JDOUnsupportedOptionException(); } public void jdoProvideField(int fieldNumber) { throw new JDOUnsupportedOptionException(); }
212213214215216217218219
/** * Removes all of the elements from this collection * (optional operation). */ public void clear() { throw new JDOUnsupportedOptionException( "This method is not supported in this implementation"); }
86878889909192
public void jdoProvideField(int fieldNumber) { throw new JDOUnsupportedOptionException(); } public void jdoProvideFields(int[] fieldNumbers) { throw new JDOUnsupportedOptionException(); }
90919293949596
public void jdoProvideFields(int[] fieldNumbers) { throw new JDOUnsupportedOptionException(); } public void jdoCopyFields(Object pc, int[] fieldNumbers) { throw new JDOUnsupportedOptionException(); }
254255256257258259260261
/** * Compares the specified object with this collection for equality. */ public boolean equals(Object o) { throw new JDOUnsupportedOptionException( "This method is not supported in this implementation"); }
272273274275276277278279280281
*/ public boolean isEmpty() { try { return tc == null || tc.isEmpty(); } catch (MedorException me) { throw new JDOUnsupportedOptionException( "a MedorException has been catched", new Exception[]{me}); } }
141142143144145146147
public Object jdoNewObjectIdInstance(String s) { return null; } public void jdoCopyKeyFieldsToObjectId(Object o) { throw new JDOUnsupportedOptionException(); }