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

eu.webtoolkit.jwt.CheckState Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
/*
 * Copyright (C) 2009 Emweb bvba, Leuven, Belgium.
 *
 * See the LICENSE file for terms of use.
 */
package eu.webtoolkit.jwt;

import java.util.*;
import java.util.regex.*;
import java.io.*;
import java.lang.ref.*;
import java.util.concurrent.locks.ReentrantLock;
import javax.servlet.http.*;
import javax.servlet.*;
import eu.webtoolkit.jwt.*;
import eu.webtoolkit.jwt.chart.*;
import eu.webtoolkit.jwt.utils.*;
import eu.webtoolkit.jwt.servlet.*;

/**
 * Enumeration for the check state of a check box.
 * 

* * @see WCheckBox */ public enum CheckState { /** * Unchecked. */ Unchecked, /** * Partially checked (for a tri-state checkbox). */ PartiallyChecked, /** * Checked. */ Checked; /** * Returns the numerical representation of this enum. */ public int getValue() { return ordinal(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy