示例#1
0
 /**
  * Resolve this constant pool entry with respect to its dependents in the constant pool.
  *
  * @param constantPool the constant pool of which this entry is a member and against which this
  *     entry is to be resolved.
  */
 @Override
 public void resolve(final ConstantPool constantPool) {
   final Utf8CPInfo methodClass = (Utf8CPInfo) constantPool.getEntry(methodDescriptorIndex);
   methodClass.resolve(constantPool);
   methodDescriptor = methodClass.getValue();
   super.resolve(constantPool);
 }
示例#2
0
 /**
  * Resolve this constant pool entry with respect to its dependents in the constant pool.
  *
  * @param constantPool the constant pool of which this entry is a member and against which this
  *     entry is to be resolved.
  */
 public void resolve(ConstantPool constantPool) {
   nameAndTypeCPInfo = (NameAndTypeCPInfo) constantPool.getEntry(nameAndTypeIndex);
   nameAndTypeCPInfo.resolve(constantPool);
   super.resolve(constantPool);
 }
 /**
  * Resolve this constant pool entry with respect to its dependents in the constant pool.
  *
  * @param constantPool the constant pool of which this entry is a member and against which this
  *     entry is to be resolved.
  */
 public void resolve(ConstantPool constantPool) {
   setValue(((Utf8CPInfo) constantPool.getEntry(index)).getValue());
   super.resolve(constantPool);
 }