Package net.sf.cglib.proxy
Class Mixin.Generator
- java.lang.Object
-
- net.sf.cglib.core.AbstractClassGenerator
-
- net.sf.cglib.proxy.Mixin.Generator
-
- All Implemented Interfaces:
ClassGenerator
- Enclosing class:
- Mixin
public static class Mixin.Generator extends AbstractClassGenerator
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class net.sf.cglib.core.AbstractClassGenerator
AbstractClassGenerator.ClassLoaderData, AbstractClassGenerator.Source
-
-
Constructor Summary
Constructors Constructor Description Generator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Mixincreate()protected java.lang.ObjectfirstInstance(java.lang.Class type)voidgenerateClass(org.objectweb.asm.ClassVisitor v)protected java.lang.ClassLoadergetDefaultClassLoader()protected java.security.ProtectionDomaingetProtectionDomain()Returns the protection domain to use when defining the class.protected java.lang.ObjectnextInstance(java.lang.Object instance)voidsetClasses(java.lang.Class[] classes)voidsetDelegates(java.lang.Object[] delegates)voidsetStyle(int style)-
Methods inherited from class net.sf.cglib.core.AbstractClassGenerator
create, generate, getAttemptLoad, getClassLoader, getClassName, getCurrent, getNamingPolicy, getStrategy, getUseCache, setAttemptLoad, setClassLoader, setNamePrefix, setNamingPolicy, setStrategy, setUseCache, unwrapCachedValue, wrapCachedClass
-
-
-
-
Field Detail
-
SOURCE
private static final AbstractClassGenerator.Source SOURCE
-
classes
private java.lang.Class[] classes
-
delegates
private java.lang.Object[] delegates
-
style
private int style
-
route
private int[] route
-
-
Method Detail
-
getDefaultClassLoader
protected java.lang.ClassLoader getDefaultClassLoader()
- Specified by:
getDefaultClassLoaderin classAbstractClassGenerator
-
getProtectionDomain
protected java.security.ProtectionDomain getProtectionDomain()
Description copied from class:AbstractClassGeneratorReturns the protection domain to use when defining the class.Default implementation returns
nullfor using a default protection domain. Sub-classes may override to use a more specific protection domain.- Overrides:
getProtectionDomainin classAbstractClassGenerator- Returns:
- the protection domain (
nullfor using a default)
-
setStyle
public void setStyle(int style)
-
setClasses
public void setClasses(java.lang.Class[] classes)
-
setDelegates
public void setDelegates(java.lang.Object[] delegates)
-
create
public Mixin create()
-
generateClass
public void generateClass(org.objectweb.asm.ClassVisitor v)
-
firstInstance
protected java.lang.Object firstInstance(java.lang.Class type)
- Specified by:
firstInstancein classAbstractClassGenerator
-
nextInstance
protected java.lang.Object nextInstance(java.lang.Object instance)
- Specified by:
nextInstancein classAbstractClassGenerator
-
-