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

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

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

import java.io.*;

import serp.bytecode.visitor.*;
import serp.util.*;

/**
 * A constant int value in the constant pool.
 *
 * @author Abe White
 */
public class IntEntry extends Entry implements ConstantEntry {
    private int _value = -1;

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

    /**
     * Constructor.
     *
     * @param value the constant int value of this entry
     */
    public IntEntry(int value) {
        _value = value;
    }

    public int getType() {
        return Entry.INT;
    }

    /**
     * Return the value of this constant.
     */
    public int getValue() {
        return _value;
    }

    /**
     * Set the value of this constant.
     */
    public void setValue(int value) {
        Object key = beforeModify();
        _value = value;
        afterModify(key);
    }

    public Object getConstant() {
        return Numbers.valueOf(getValue());
    }

    public void setConstant(Object value) {
        setValue(((Number) value).intValue());
    }

    protected void readData(DataInput in) throws IOException {
        _value = in.readInt();
    }

    protected void writeData(DataOutput out) throws IOException {
        out.writeInt(_value);
    }

    public void acceptVisit(BCVisitor visit) {
        visit.enterIntEntry(this);
        visit.exitIntEntry(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy