1 2 12 package com.versant.core.jdo; 13 14 import javax.jdo.spi.PersistenceCapable; 15 16 20 public interface VersantDetachable extends PersistenceCapable { 21 22 31 public boolean versantIsDirty(); 32 33 38 public boolean versantIsDirty(int fieldNo); 39 40 45 public void versantMakeDirty(String fieldName); 46 47 52 public void versantMakeDirty(int fieldNo); 53 54 60 public boolean versantIsLoaded(int fieldNo); 61 62 67 public void versantSetLoaded(int fieldNo); 68 69 72 public void versantSetOID(Object oid); 73 74 79 public Object versantGetOID(); 80 81 84 public void versantSetVersion(Object version); 85 86 90 public Object versantGetVersion(); 91 92 99 public VersantDetachedStateManager versantGetDetachedStateManager(); 100 101 } 102 | Popular Tags |