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

software.coley.cafedude.tree.frame.UninitializedValue 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;

import software.coley.cafedude.tree.Label;

/**
 * Contains a label which represents the offset of the instruction which created
 * the value.
 *
 * @author Justus Garbe
 */
public class UninitializedValue extends Value {
	private Label label;

	/**
	 * @param label
	 * 		Offset of the instruction which created the value.
	 */
	public UninitializedValue(Label label) {
		this.label = label;
	}

	/**
	 * @return Offset of the instruction which created the value.
	 */
	public Label getLabel() {
		return label;
	}

	/**
	 * @param label
	 * 		Offset of the instruction which created the value.
	 */
	public void setLabel(Label label) {
		this.label = label;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy