
eu.webtoolkit.jwt.ViewItemRenderFlag 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 that specifies an option for rendering a view item.
*
*
* @see WAbstractItemDelegate#update(WWidget widget, WModelIndex index, EnumSet
* flags)
*/
public enum ViewItemRenderFlag {
/**
* Render as selected
*/
RenderSelected,
/**
* Render in editing mode
*/
RenderEditing,
/**
* Render (the editor) focused
*/
RenderFocused,
/**
* Render as invalid
*/
RenderInvalid;
/**
* Returns the numerical representation of this enum.
*/
public int getValue() {
return ordinal();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy