1 21 package oracle.toplink.essentials.queryframework; 23 24 34 public interface FetchGroupTracker { 35 36 39 FetchGroup getFetchGroup(); 40 41 44 void setFetchGroup(FetchGroup group); 45 46 49 boolean isAttributeFetched(String attribute); 50 51 54 void resetFetchGroup(); 55 56 59 boolean shouldRefreshFetchGroup(); 60 61 64 void setShouldRefreshFetchGroup(boolean shouldRefreshFetchGroup); 65 } 66 | Popular Tags |