
eu.webtoolkit.jwt.CheckState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwt Show documentation
Show all versions of jwt Show documentation
Java library for developing web applications
/*
* 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