Option.java

package org.xandercat.pmdb.form;

/**
 * Class for representing an option for a select or other form list option.
 * 
 * @author Scott Arnold
 */
public class Option {

	private String value;
	private String text;
	
	public Option() {
	}
	public Option(Object value, Object text) {
		this.value = String.valueOf(value);
		this.text = String.valueOf(text);
	}
	public Option(int value, String text) {
		this.value = String.valueOf(value);
		this.text = text;
	}
	public String getValue() {
		return value;
	}
	public void setValue(String value) {
		this.value = value;
	}
	public String getText() {
		return text;
	}
	public void setText(String text) {
		this.text = text;
	}
	@Override
	public int hashCode() {
		final int prime = 31;
		int result = 1;
		result = prime * result + ((value == null) ? 0 : value.hashCode());
		return result;
	}
	@Override
	public boolean equals(Object obj) {
		if (this == obj)
			return true;
		if (obj == null)
			return false;
		if (getClass() != obj.getClass())
			return false;
		Option other = (Option) obj;
		if (value == null) {
			if (other.value != null)
				return false;
		} else if (!value.equals(other.value))
			return false;
		return true;
	}
}