FileDocCategorySizeDatePackage
ConstMethodRef.javaAPI DocGlassfish v2 API2997Fri May 04 22:34:28 BST 2007com.sun.jdo.api.persistence.enhancer.classfile

ConstMethodRef

public class ConstMethodRef extends ConstBasicMemberRef
Class representing a reference to a method of some class in the constant pool of a class file

Fields Summary
public static final int
MyTag
Constructors Summary
ConstMethodRef(ConstClass cname, ConstNameAndType NT)

    super(cname, NT);
  
ConstMethodRef(int cnameIndex, int NT_index)

    super(cnameIndex, NT_index);
  
Methods Summary
static com.sun.jdo.api.persistence.enhancer.classfile.ConstMethodRefread(java.io.DataInputStream input)

    int cname = input.readUnsignedShort();
    int NT = input.readUnsignedShort();
    return new ConstMethodRef (cname, NT);
  
public inttag()
The tag of this constant entry


  /* public accessors */

           
       return MyTag; 
public java.lang.StringtoString()
A printable representation

      return "CONSTANTMethodRef(" + indexAsString() + "): " + //NOI18N
           super.toString();