Package org.apache.openjpa.enhance
Class RedefinitionHelper
- java.lang.Object
 - 
- org.apache.openjpa.enhance.RedefinitionHelper
 
 
- 
public class RedefinitionHelper extends Object
Helper methods for managed types that use method redefinition for field tracking.- Since:
 - 1.0.0
 
 
- 
- 
Constructor Summary
Constructors Constructor Description RedefinitionHelper() 
- 
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidaccessingField(Object o, int absoluteIndex)Notify the state manager foro(if any) that a field is about to be accessed.static voidassignLazyLoadProxies(StateManagerImpl sm)Create a container instance that will delegate back to the state manager to emulate lazy loading.static voiddirtyCheck(StateManager sm)CallStateManagerImpl.dirtyCheck()if the argument is aStateManagerImpl.static voidsettingField(Object o, int idx, boolean cur, boolean next)Setting state callback.static voidsettingField(Object o, int idx, byte cur, byte next)Setting state callback.static voidsettingField(Object o, int idx, char cur, char next)Setting state callback.static voidsettingField(Object o, int idx, double cur, double next)Setting state callback.static voidsettingField(Object o, int idx, float cur, float next)Setting state callback.static voidsettingField(Object o, int idx, int cur, int next)Setting state callback.static voidsettingField(Object o, int idx, long cur, long next)Setting state callback.static voidsettingField(Object o, int idx, short cur, short next)Setting state callback.static voidsettingField(Object o, int idx, Object cur, Object next)Setting state callback.static voidsettingField(Object o, int idx, String cur, String next)Setting state callback. 
 - 
 
- 
- 
Method Detail
- 
dirtyCheck
public static void dirtyCheck(StateManager sm)
CallStateManagerImpl.dirtyCheck()if the argument is aStateManagerImpl. 
- 
accessingField
public static void accessingField(Object o, int absoluteIndex)
Notify the state manager foro(if any) that a field is about to be accessed. 
- 
settingField
public static void settingField(Object o, int idx, boolean cur, boolean next)
Setting state callback. 
- 
settingField
public static void settingField(Object o, int idx, char cur, char next)
Setting state callback. 
- 
settingField
public static void settingField(Object o, int idx, byte cur, byte next)
Setting state callback. 
- 
settingField
public static void settingField(Object o, int idx, short cur, short next)
Setting state callback. 
- 
settingField
public static void settingField(Object o, int idx, int cur, int next)
Setting state callback. 
- 
settingField
public static void settingField(Object o, int idx, long cur, long next)
Setting state callback. 
- 
settingField
public static void settingField(Object o, int idx, float cur, float next)
Setting state callback. 
- 
settingField
public static void settingField(Object o, int idx, double cur, double next)
Setting state callback. 
- 
settingField
public static void settingField(Object o, int idx, String cur, String next)
Setting state callback. 
- 
settingField
public static void settingField(Object o, int idx, Object cur, Object next)
Setting state callback. 
- 
assignLazyLoadProxies
public static void assignLazyLoadProxies(StateManagerImpl sm)
Create a container instance that will delegate back to the state manager to emulate lazy loading. This is used by PC subclasses for unenhanced types that could not be redefined, and thus do not have field-interception capabilities. Do this for all collection and map field types, even if they are in the dfg, in case the fetch groups are reset at runtime.- Since:
 - 1.1.0
 
 
 - 
 
 -