View Javadoc
1 package jrre.types; 2 3 import jrre.ObjectInstance; 4 5 /*** 6 * 7 * 8 * @author Christopher Ellsworth (Chris@chrisellsworth.com) 9 * @author Clarence Alston 10 * @version 11 */ 12 public class ReferenceType extends Type { 13 14 jrre.ObjectInstance value; 15 16 public ReferenceType(jrre.ObjectInstance value){ 17 this.value = value; 18 } 19 20 /*** 21 * Gets the Value. 22 */ 23 public jrre.ObjectInstance getValue(){ 24 return this.value; 25 } 26 27 /*** 28 * Sets the Value. 29 * @param Value The value to set it to. 30 */ 31 public void setValue(jrre.ObjectInstance value){ 32 this.value = value; 33 } 34 35 public String toString(){ 36 37 return value.toString(); 38 } 39 }

This page was automatically generated by Maven