Package net.sf.cglib.proxy

Examples of net.sf.cglib.proxy.FixedValue


  public static BeanInterface createCglibBean() {
    Enhancer enhancer = new Enhancer();
    enhancer.setClassLoader( BeanInterface.class.getClassLoader() );
    enhancer.setInterfaces( new Class[] { BeanInterface.class } );
    enhancer.setCallbackFilter( new InterfaceMethodFilter() );
    enhancer.setCallbacks( new Callback[] { new FixedValue()
        {
          public Object loadObject() throws Exception {

            return "Hello, World!";
          }
View Full Code Here

TOP

Related Classes of net.sf.cglib.proxy.FixedValue

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.