All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ru.saidgadjiev.proxymaker.bytecode.constantpool.InterfaceMethodRefInfo Maven / Gradle / Ivy

package ru.saidgadjiev.proxymaker.bytecode.constantpool;

/**
 * This class represent constant for interface method.
 */
public class InterfaceMethodRefInfo extends MemberRefInfo {

    /**
     * Interface method ref info constant start tag.
     */
    private static final int TAG = 11;

    /**
     * Constructor for interface method ref constant.
     *
     * @param classInfoIndex target class index
     * @param nameAndTypeIndex target name and type index
     * @param index index of this constant in constant pool items
     */
    public InterfaceMethodRefInfo(int classInfoIndex, int nameAndTypeIndex, int index) {
        super(classInfoIndex, nameAndTypeIndex, index);
    }

    @Override
    public int getTag() {
        return TAG;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy