Index: src/java/org/apache/jdo/impl/fostore/FOStorePM.java =================================================================== --- src/java/org/apache/jdo/impl/fostore/FOStorePM.java (revision 387919) +++ src/java/org/apache/jdo/impl/fostore/FOStorePM.java (working copy) @@ -180,4 +180,34 @@ throw new UnsupportedOperationException( "Method newNamedQuery(Class, String) not yet implemented"); } + + /** Make an instance transient, removing it from management by this + * PersistenceManager. Because FOStore doesn't + * support the notion of a fetch plan, this method behaves exactly as + * makeTransient(Object pc). + * @see javax.jdo.PersistenceManager#makeTransient(Object, boolean); + */ + public void makeTransient(Object pc, boolean useFetchPlan) { + makeTransient(pc); + } + + /** Make instances transient, removing them from management + * by this PersistenceManager. Because FOStore doesn't + * support the notion of a fetch plan, this method behaves exactly as + * makeTransientAll(Object[] pcs). + * @see javax.jdo.PersistenceManager#makeTransientAll(Object[], boolean); + */ + public void makeTransientAll(Object[] pcs, boolean useFetchPlan) { + makeTransientAll(pcs); + } + + /** Make instances transient, removing them from management + * by this PersistenceManager. Because FOStore doesn't + * support the notion of a fetch plan, this method behaves exactly as + * makeTransientAll(Collection pcs). + * @see javax.jdo.PersistenceManager#makeTransientAll(Collection, boolean); + */ + public void makeTransientAll(Collection pcs, boolean useFetchPlan) { + makeTransientAll(pcs); + } }