コード例 #1
0
 /**
  * Make a Collection of Persistence-Capable objects transient
  *
  * @param pcs Collection of Persistence-Capable objects
  */
 public void makeTransientAll(Collection pcs) {
   checkStatus();
   pm.makeTransientAll(pcs);
 }
コード例 #2
0
 /**
  * Make an array of Persistence-Capable objects transient
  *
  * @param pcs Array of Persistence-Capable objects
  */
 public void makeTransientAll(Object... pcs) {
   checkStatus();
   pm.makeTransientAll(pcs);
 }
コード例 #3
0
 /**
  * Make an array of Persistence-Capable objects transient
  *
  * @param useFetchPlan Whether to use the fetch plan
  * @param pcs Array of Persistence-Capable objects
  * @since JDO 2.1
  */
 public void makeTransientAll(boolean useFetchPlan, Object... pcs) {
   checkStatus();
   pm.makeTransientAll(useFetchPlan, pcs);
 }
コード例 #4
0
 /**
  * Make a Collection of Persistence-Capable objects transient
  *
  * @param pcs Collection of Persistence-Capable objects
  * @param useFetchPlan Whether to use the fetch plan
  */
 public void makeTransientAll(Collection pcs, boolean useFetchPlan) {
   checkStatus();
   pm.makeTransientAll(pcs, useFetchPlan);
 }
コード例 #5
0
 /**
  * Make an array of Persistence-Capable objects transient
  *
  * @param pcs Array of Persistence-Capable objects
  * @param useFetchPlan Whether to use the fetch plan
  */
 public void makeTransientAll(Object[] pcs, boolean useFetchPlan) {
   checkStatus();
   pm.makeTransientAll(useFetchPlan, pcs);
 }