Package org.codehaus.groovy.classgen

Examples of org.codehaus.groovy.classgen.BytecodeHelper.unbox()


            // cast argument to parameter class, inclusive unboxing
            // for methods with primitive types
            Class parameterType = parameters[i];
            if (parameterType.isPrimitive()) {
                helper.unbox(parameterType);
            } else {
                helper.doCast(parameterType);
            }
        }       
       
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.