Package net.sf.rej.java.attribute.annotations

Examples of net.sf.rej.java.attribute.annotations.ConstantValue


        }
        sd.drawDefault("}");
      } else if (ev instanceof ClassInfoValue) {
        sd.drawDefault(ia.getShortName(ev.getValue()));
      } else if (ev instanceof ConstantValue) {
        ConstantValue cv = (ConstantValue)ev;
        drawConstant(sd, cv.getConstantPoolInfo());
      } else if (ev instanceof EnumValue) {
        EnumValue en = (EnumValue)ev;
        sd.drawDefault(ia.getShortName(en.getTypeName()));
        sd.drawDefault(".");
        sd.drawField(en.getConstName());
View Full Code Here

TOP

Related Classes of net.sf.rej.java.attribute.annotations.ConstantValue

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.