Package org.hibernate.query.sqm.internal
Class SimpleSqmCopyContext
- java.lang.Object
-
- org.hibernate.query.sqm.internal.SimpleSqmCopyContext
-
- All Implemented Interfaces:
SqmCopyContext
- Direct Known Subclasses:
NoParamSqmCopyContext
public class SimpleSqmCopyContext extends Object implements SqmCopyContext
-
-
Constructor Summary
Constructors Constructor Description SimpleSqmCopyContext()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> T
getCopy(T original)
<T> T
registerCopy(T original, T copy)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.query.sqm.tree.SqmCopyContext
copyFetchedFlag
-
-
-
-
Method Detail
-
getCopy
public <T> T getCopy(T original)
- Specified by:
getCopy
in interfaceSqmCopyContext
-
registerCopy
public <T> T registerCopy(T original, T copy)
- Specified by:
registerCopy
in interfaceSqmCopyContext
-
-