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

CONSTANT_Methodref_info

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

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

    
    
           
    
        super (class_index, name_and_type_index);
    
protected CONSTANT_Methodref_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_Methodref_info: [class_index = " + m_class_index + ", name_and_type_index = " + m_name_and_type_index + ']";