Package net.sf.rej.java.attribute

Examples of net.sf.rej.java.attribute.ConstantValueAttribute


  public void setNameIndex(int nameIndex) {
    this.nameIndex = nameIndex;
  }
 
  public ConstantPoolInfo getConstant() {
    ConstantValueAttribute attr = this.attributes.getConstantValueAttribute();
    if (attr != null) {
      int index = attr.getConstantIndex();
      ConstantPoolInfo cpi = this.pool.get(index);
      return cpi;
    }
   
    return null;
View Full Code Here

TOP

Related Classes of net.sf.rej.java.attribute.ConstantValueAttribute

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.