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

spoon.examples.visitor.src.expression.IntegerExpression Maven / Gradle / Ivy

The newest version!
package spoon.examples.visitor.src.expression;


public class IntegerExpression implements Expression {
    
    public IntegerExpression(int value) {
        this.value=value;
    }
    
    int value;

    public int getValue() {
        return value;
    }

    public void setValue(int value) {
        this.value = value;
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy