01: package org.jreform; 02: 03: /** 04: * A checkbox with a single value. 05: * 06: * @author armandino (at) gmail.com 07: */ 08: public interface Checkbox<T> extends Input<T> { 09: public CheckableState getState(); 10: }