Package org.objectweb.asm.attrs.Annotation

Examples of org.objectweb.asm.attrs.Annotation.EnumConstValue


    } else if (value instanceof Boolean) {
      return "new Boolean("+value+")";

    } else if (value instanceof EnumConstValue) {
      EnumConstValue e = (EnumConstValue) value;
      return "new Annotation.EnumConstValue(\""+e.typeName+"\", \""+e.constName+"\")";

    } else if (value instanceof Type) {
      Type t = (Type)value;
      return "Type.getType(\""+t.getDescriptor()+"\")";
View Full Code Here

TOP

Related Classes of org.objectweb.asm.attrs.Annotation.EnumConstValue

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.