FileDocCategorySizeDatePackage
CONSTANT_InterfaceMethodref_info.javaAPI DocAndroid 1.5 API2266Wed May 06 22:41:16 BST 2009com.vladium.jcd.cls.constant

CONSTANT_InterfaceMethodref_info

public final class CONSTANT_InterfaceMethodref_info extends CONSTANT_ref_info
This structure is used in the constant pool to represent dynamic references to interface methods. The class_index item of a CONSTANT_InterfaceMethodref_info structure must be an interface type that declares the given method.
see
CONSTANT_ref_info
see
CONSTANT_Fieldref_info
see
CONSTANT_Methodref_info
author
(C) 2001, Vlad Roubtsov

Fields Summary
public static final byte
TAG
Constructors Summary
public CONSTANT_InterfaceMethodref_info(int class_index, int name_and_type_index)

    
    
           
    
        super (class_index, name_and_type_index);
    
protected CONSTANT_InterfaceMethodref_info(com.vladium.jcd.lib.UDataInputStream bytes)

        super (bytes);
    
Methods Summary
public java.lang.Objectaccept(ICONSTANTVisitor visitor, java.lang.Object ctx)

        return visitor.visit (this, ctx);
    
public final bytetag()

        return TAG;
    
public java.lang.StringtoString()

        return "CONSTANT_InterfaceMethodref: [class_index = " + m_class_index + ", name_and_type_index = " + m_name_and_type_index + ']";