Package net.sf.cglib.proxy
Class Mixin
- java.lang.Object
-
- net.sf.cglib.proxy.Mixin
-
public abstract class Mixin extends Object
Mixin
allows multiple objects to be combined into a single larger object. The methods in the generated object simply call the original methods in the underlying "delegate" objects.- Version:
- $Id: Mixin.java,v 1.7 2005/09/27 11:42:27 baliuka Exp $
- Author:
- Chris Nokleberg
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Mixin.Generator
-
Field Summary
Fields Modifier and Type Field Description static int
STYLE_BEANS
static int
STYLE_EVERYTHING
static int
STYLE_INTERFACES
-
Constructor Summary
Constructors Constructor Description Mixin()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static Mixin
create(Class[] interfaces, Object[] delegates)
Helper method to create an interface mixin.static Mixin
create(Object[] delegates)
Helper method to create an interface mixin.static Mixin
createBean(ClassLoader loader, Object[] beans)
Helper method to create a bean mixin.static Mixin
createBean(Object[] beans)
static Class[]
getClasses(Object[] delegates)
abstract Mixin
newInstance(Object[] delegates)
-
-
-
Field Detail
-
STYLE_INTERFACES
public static final int STYLE_INTERFACES
- See Also:
- Constant Field Values
-
STYLE_BEANS
public static final int STYLE_BEANS
- See Also:
- Constant Field Values
-
STYLE_EVERYTHING
public static final int STYLE_EVERYTHING
- See Also:
- Constant Field Values
-
-
Method Detail
-
create
public static Mixin create(Object[] delegates)
Helper method to create an interface mixin. For finer control over the generated instance, use a new instance ofMixin
instead of this static method. TODO
-
create
public static Mixin create(Class[] interfaces, Object[] delegates)
Helper method to create an interface mixin. For finer control over the generated instance, use a new instance ofMixin
instead of this static method. TODO
-
createBean
public static Mixin createBean(ClassLoader loader, Object[] beans)
Helper method to create a bean mixin. For finer control over the generated instance, use a new instance ofMixin
instead of this static method. TODO
-
-