Package org.aspectj.org.eclipse.jdt.internal.compiler.env

Examples of org.aspectj.org.eclipse.jdt.internal.compiler.env.IBinaryElementValuePair


  private void addBinaryAnnotation(IBinaryAnnotation annotation) {
    addTypeReference(replace('/', '.', Signature.toCharArray(annotation.getTypeName())));
    IBinaryElementValuePair[] valuePairs = annotation.getElementValuePairs();
    if (valuePairs != null) {
      for (int j=0, vpLength=valuePairs.length; j<vpLength; j++) {
        IBinaryElementValuePair valuePair = valuePairs[j];
        addMethodReference(valuePair.getName(), 0);
        Object pairValue = valuePair.getValue();
        addPairValue(pairValue);
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.aspectj.org.eclipse.jdt.internal.compiler.env.IBinaryElementValuePair

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.