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

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

Go to download

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

There is a newer version: 2.1.1
Show newest version
package software.coley.cafedude.tree.frame;

/**
 * Contains a string which represents the type of the value.
 *
 * @author Justus Garbe
 */
public class ObjectValue extends Value {
	private String type;

	/**
	 * @param type
	 * 		Type of the value.
	 */
	public ObjectValue(String type) {
		this.type = type;
	}

	/**
	 * @return Type of the value.
	 */
	public String getType() {
		return type;
	}

	/**
	 * @param type
	 * 		Type of the value.
	 */
	public void setType(String type) {
		this.type = type;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy