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

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


      }
    }
  }
  private void addPairValue(Object pairValue) {
    if (pairValue instanceof EnumConstantSignature) {
      EnumConstantSignature enumConstant = (EnumConstantSignature) pairValue;
      addTypeReference(replace('/', '.', Signature.toCharArray(enumConstant.getTypeName())));
      addNameReference(enumConstant.getEnumConstantName());
    } else if (pairValue instanceof ClassSignature) {
      ClassSignature classConstant = (ClassSignature) pairValue;
      addTypeReference(replace('/', '.', Signature.toCharArray(classConstant.getTypeName())));
    } else if (pairValue instanceof IBinaryAnnotation) {
      addBinaryAnnotation((IBinaryAnnotation) pairValue);
View Full Code Here

TOP

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

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.