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

software.coley.cafedude.tree.frame.PrimitiveValue Maven / Gradle / Ivy

Go to download

Tree module for CafeDude, containing a simplified intermediate model for classes

The newest version!
package software.coley.cafedude.tree.frame;

/**
 * Contains an integer which represents the type of the value. It can be one of
 * the following:
 * 
    *
  • {@link #TOP}
  • *
  • {@link #INTEGER}
  • *
  • {@link #FLOAT}
  • *
  • {@link #DOUBLE}
  • *
  • {@link #LONG}
  • *
  • {@link #NULL}
  • *
  • {@link #UNINITIALIZED_THIS}
  • *
* * @author Justus Garbe */ public class PrimitiveValue extends Value { private int value; /** * @param value * Type of the value. */ public PrimitiveValue(int value) { this.value = value; } /** * @return Type of the value. */ public int getValue() { return value; } /** * @param value * Type of the value. */ public void setValue(int value) { this.value = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy