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

ConstInterfaceMethodRef

public class ConstInterfaceMethodRef extends ConstBasicMemberRef
Class representing a reference to an interface method of some class in the constant pool of a class file.

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

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

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

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


  /* public accessors */

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

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