OPENJPA-1591: Add PersistenceCapeable setter to StateManagerImpl to allow for greater extensibility.

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@926180 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Richard G. Curtis 2010-03-22 16:50:48 +00:00
parent 72d0c20634
commit 87ea1de7c2
1 changed files with 4 additions and 0 deletions

View File

@ -3381,4 +3381,8 @@ public class StateManagerImpl
public boolean requiresFetch(FieldMetaData fmd) {
return (_broker.getFetchConfiguration().requiresFetch(fmd) != FetchConfiguration.FETCH_NONE);
}
public void setPc(PersistenceCapable pc) {
_pc = pc;
}
}