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

br.com.etyllica.ui.list.Option Maven / Gradle / Ivy

package br.com.etyllica.ui.list;

public class Option {

	private String value;
	
	private String label;
	
	public Option(String value, String label) {
		super();
		
		this.value = value;
		this.label = label;
	}

	public String getValue() {
		return value;
	}

	public void setValue(String value) {
		this.value = value;
	}

	public String getLabel() {
		return label;
	}

	public void setLabel(String label) {
		this.label = label;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy