Package org.eclipse.jdt.internal.compiler.lookup

Examples of org.eclipse.jdt.internal.compiler.lookup.AptBinaryLocalVariableBinding


          for (int i = 2; i < length; i++) {
            TypeBinding typeBinding = binding.parameters[i];
            StringBuilder builder = new StringBuilder("arg");//$NON-NLS-1$
            builder.append(i - 2);
            VariableElement param = new VariableElementImpl(_env,
                new AptBinaryLocalVariableBinding(
                    String.valueOf(builder).toCharArray(),
                    typeBinding,
                    0,
                    null,
                    binding));
            params.add(param);
          }
        } else {
          int i = 0;
          for (TypeBinding typeBinding : binding.parameters) {
            StringBuilder builder = new StringBuilder("arg");//$NON-NLS-1$
            builder.append(i);
            VariableElement param = new VariableElementImpl(_env,
                new AptBinaryLocalVariableBinding(
                    String.valueOf(builder).toCharArray(),
                    typeBinding,
                    0,
                    parameterAnnotationBindings != null ? parameterAnnotationBindings[i] : null,
                    binding));
View Full Code Here

TOP

Related Classes of org.eclipse.jdt.internal.compiler.lookup.AptBinaryLocalVariableBinding

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.