|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<EntryPointType>
eu.webtoolkit.jwt.EntryPointType
public enum EntryPointType
Enumeration that indicates a JWt entrypoint type.
An entry point binds a behavior to a public URL. Only the wthttpd connector currently supports multiple entry points.
| Enum Constant Summary | |
|---|---|
Application
Specifies a full-screen application. |
|
StaticResource
Specifies a static resource. |
|
WidgetSet
Specifies an application that manages one or more widgets. |
|
| Method Summary | |
|---|---|
int |
getValue()
Returns the numerical representation of this enum. |
static EntryPointType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static EntryPointType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final EntryPointType Application
A full screen application manages the entire browser window and provides its own HTML page.
WApplication.getRoot()public static final EntryPointType WidgetSet
A widget set application is part of an existing HTML page. One or more HTML elements in that web page may be bound to widgets managed by the application.
The application presents itself as a JavaScript file, and therefore should be embedded in the web page using a <script> tag, from within the <body> (since it needs access to the <body>).
Note: A WidgetSet application requires JavaScript support
WApplication.bindWidget(WWidget widget, String domId)public static final EntryPointType StaticResource
A static resource binds a WResource to a public URL, and is not
bound to a specific session.
| Method Detail |
|---|
public static EntryPointType[] values()
for (EntryPointType c : EntryPointType.values()) System.out.println(c);
public static EntryPointType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is nullpublic int getValue()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||