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

serp.bytecode.lowlevel.ComplexEntry Maven / Gradle / Ivy

There is a newer version: 4.0.1
Show newest version
package serp.bytecode.lowlevel;

import java.io.*;

/**
 * Base class for field, method, and interface method constant pool
 * entries. All complex entries reference the {@link ClassEntry} of the
 * class that owns the entity and a {@link NameAndTypeEntry} describing
 * the entity.
 *
 * @author Abe White
 */
public abstract class ComplexEntry extends Entry {
    private int _classIndex = 0;
    private int _nameAndTypeIndex = 0;

    /**
     * Default constructor.
     */
    public ComplexEntry() {
    }

    /**
     * Constructor.
     *
     * @param classIndex the constant pool index of the
     * {@link ClassEntry} describing the owner of this entity
     * @param nameAndTypeIndex the constant pool index of the
     * {@link NameAndTypeEntry} describing this entity
     */
    public ComplexEntry(int classIndex, int nameAndTypeIndex) {
        _classIndex = classIndex;
        _nameAndTypeIndex = nameAndTypeIndex;
    }

    /**
     * Return the constant pool index of the {@link ClassEntry} describing
     * the owning class of this entity. Defaults to 0.
     */
    public int getClassIndex() {
        return _classIndex;
    }

    /**
     * Set the constant pool index of the {@link ClassEntry} describing
     * the owning class of this entity.
     */
    public void setClassIndex(int classIndex) {
        Object key = beforeModify();
        _classIndex = classIndex;
        afterModify(key);
    }

    /**
     * Return the referenced {@link ClassEntry}. This method can only
     * be run for entries that have been added to a constant pool.
     */
    public ClassEntry getClassEntry() {
        return (ClassEntry) getPool().getEntry(_classIndex);
    }

    /**
     * Return the constant pool index of the {@link NameAndTypeEntry}
     * describing this entity.
     */
    public int getNameAndTypeIndex() {
        return _nameAndTypeIndex;
    }

    /**
     * Set the constant pool index of the {@link NameAndTypeEntry}
     * describing this entity.
     */
    public void setNameAndTypeIndex(int nameAndTypeIndex) {
        Object key = beforeModify();
        _nameAndTypeIndex = nameAndTypeIndex;
        afterModify(key);
    }

    /**
     * Return the referenced {@link NameAndTypeEntry}. This method can only
     * be run for entries that have been added to a constant pool.
     */
    public NameAndTypeEntry getNameAndTypeEntry() {
        return (NameAndTypeEntry) getPool().getEntry(_nameAndTypeIndex);
    }

    void readData(DataInput in) throws IOException {
        _classIndex = in.readUnsignedShort();
        _nameAndTypeIndex = in.readUnsignedShort();
    }

    void writeData(DataOutput out) throws IOException {
        out.writeShort(_classIndex);
        out.writeShort(_nameAndTypeIndex);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy