/**
 * ParameterReferenceItem.java
 * Created on May 19, 2008
 * (C) Copyright TANDBERG Television Ltd.
 */
package com.tandbergtv.watchpoint.pmm.job.conf;

/**
 * @author spuranik
 *
 * This class represents the individual items under the group in a job
 * parameter or job rule drop down
 */
public class ParameterReferenceItem {

	// this is the name that will be displayed for the item in the drop down
	private String name;

	// this is the name that will be displayed when the item is selected
	// e.g. @groupname_propertyname
	private String value;

	// parent for this item
	private ParameterReferenceGroup parent;

	/**
	 * @return the name
	 */
	public String getName() {
		return name;
	}

	/**
	 * @param name the name to set
	 */
	public void setName(String name) {
		this.name = name;
	}

	/**
	 * @return the value
	 */
	public String getValue() {
		return value;
	}

	/**
	 * @param value the value to set
	 */
	public void setValue(String value) {
		this.value = value;
	}

	/**
	 * @return the parent
	 */
	public ParameterReferenceGroup getParent() {
		return parent;
	}

	/**
	 * @param parent the parent to set
	 */
	public void setParent(ParameterReferenceGroup parent) {
		this.parent = parent;
	}
}
