1 package com.loribel.commons.abstraction; 2 3 /*** 4 * Abstraction of a persistentObject 5 * 6 * @author Grégory Borelli 7 */ 8 public interface GB_PersistentObjectSet 9 extends 10 GB_PersistentObject 11 { 12 void setNewObject( 13 boolean a_flag); 14 15 void setDeleted( 16 boolean a_flag); 17 18 void setModified( 19 boolean a_flag); 20 21 }