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

com.github.bordertech.wcomponents.Option Maven / Gradle / Ivy

There is a newer version: 1.5.34
Show newest version
package com.github.bordertech.wcomponents;

/**
 * Describes an option in a list-type control, e.g. {@link WDropdown}, {@link WMultiSelect} etc.
 *
 * @author Yiannis Paschalidis
 * @since 1.0.0
 */
public interface Option {

	/**
	 * @return the code for this option.
	 */
	String getCode();

	/**
	 * @return the textual description of this option.
	 */
	String getDesc();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy