|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Application | |
---|---|
org.apache.wicket | The core Wicket package. |
org.apache.wicket.markup | Base package for markup. |
org.apache.wicket.markup.html | Base package of HTML markup. |
org.apache.wicket.markup.html.resources | Support classes for HTML specific resources. |
org.apache.wicket.protocol.http | HTTP implementation. |
org.apache.wicket.resource | Locale aware resouce loaders. |
org.apache.wicket.settings | |
org.apache.wicket.util.lang | Java utilities. |
org.apache.wicket.util.tester | A package with utility classes to ease unit testing of Wicket applications without the need for a servlet container. |
Uses of Application in org.apache.wicket |
---|
Fields in org.apache.wicket declared as Application | |
---|---|
protected Application |
RequestCycle.application
The application object. |
Methods in org.apache.wicket that return Application | |
---|---|
static Application |
Application.get()
Get Application for current thread. |
static Application |
Application.get(java.lang.String applicationKey)
Gets the Application based on the application key of that application. |
Application |
Session.getApplication()
Get the application that is currently working with this session. |
Application |
RequestCycle.getApplication()
Gets the application object. |
Application |
Component.getApplication()
Gets interface to application that this component is a part of. |
Methods in org.apache.wicket with parameters of type Application | |
---|---|
void |
ResourceReference.bind(Application application)
Binds this shared resource to the given application. |
void |
IDestroyer.destroy(Application application)
|
void |
Initializer.init(Application application)
|
void |
IInitializer.init(Application application)
|
RequestCycle |
Application.newRequestCycle(Application application,
Request request,
Response response)
Deprecated. Applications wishing to provide custom request cycles should override method newRequestCycle(Request, Response) |
static void |
Application.set(Application application)
THIS METHOD IS NOT PART OF THE WICKET PUBLIC API. |
void |
Session.setApplication(Application application)
THIS METHOD IS NOT PART OF THE WICKET PUBLIC API. |
Constructors in org.apache.wicket with parameters of type Application | |
---|---|
RequestCycle(Application application,
Request request,
Response response)
Constructor. |
|
Session(Application application,
Request request)
Deprecated. Use #Session(Request) |
Uses of Application in org.apache.wicket.markup |
---|
Constructors in org.apache.wicket.markup with parameters of type Application | |
---|---|
MarkupCache(Application application)
Constructor. |
Uses of Application in org.apache.wicket.markup.html |
---|
Methods in org.apache.wicket.markup.html with parameters of type Application | |
---|---|
static void |
PackageResource.bind(Application application,
java.lang.Class scope,
java.util.regex.Pattern pattern)
Deprecated. Since Wicket 1.2.1 this method is effectively a no-op. package resources are automatically tried and bound as
shared resources so that they don't have to be pre-registered anymore. Will be
removed in 2.0 |
static void |
PackageResource.bind(Application application,
java.lang.Class scope,
java.util.regex.Pattern pattern,
boolean recurse)
Deprecated. Since Wicket 1.2.1 this method is effectively a no-op. package resources are automatically tried and bound as
shared resources so that they don't have to be pre-registered anymore. Will be
removed in 2.0 |
static void |
PackageResource.bind(Application application,
java.lang.Class scope,
java.lang.String name)
Binds a resource to the given application object. |
static void |
PackageResource.bind(Application application,
java.lang.Class scope,
java.lang.String name,
java.util.Locale locale)
Binds a resource to the given application object. |
static void |
PackageResource.bind(Application application,
java.lang.Class scope,
java.lang.String name,
java.util.Locale locale,
java.lang.String style)
Binds a resource to the given application object. |
Constructors in org.apache.wicket.markup.html with parameters of type Application | |
---|---|
PackageResourceReference(Application application,
java.lang.Class scope,
java.lang.String name)
Deprecated. Constructor to get a resource reference to a packaged resource. |
|
PackageResourceReference(Application application,
java.lang.Class scope,
java.lang.String name,
java.util.Locale locale,
java.lang.String style)
Deprecated. Constructor to get a resource reference to a packaged resource. |
|
PackageResourceReference(Application application,
java.lang.String name)
Deprecated. Constructor to get a resource reference to a packaged resource. |
Uses of Application in org.apache.wicket.markup.html.resources |
---|
Methods in org.apache.wicket.markup.html.resources with parameters of type Application | |
---|---|
protected ResourceReference |
PackagedResourceReference.createPackageResourceReference(Application app,
java.lang.Class scope,
java.lang.String name)
Creates new package resource reference. |
protected ResourceReference |
JavaScriptReference.createPackageResourceReference(Application app,
java.lang.Class scope,
java.lang.String name)
|
Constructors in org.apache.wicket.markup.html.resources with parameters of type Application | |
---|---|
CompressedPackageResourceReference(Application application,
java.lang.Class scope,
java.lang.String name)
Deprecated. |
|
CompressedPackageResourceReference(Application application,
java.lang.Class scope,
java.lang.String name,
java.util.Locale locale,
java.lang.String style)
Deprecated. |
|
CompressedPackageResourceReference(Application application,
java.lang.String name)
Deprecated. |
Uses of Application in org.apache.wicket.protocol.http |
---|
Subclasses of Application in org.apache.wicket.protocol.http | |
---|---|
class |
WebApplication
A web application is a subclass of Application which associates with an instance of WicketServlet to serve pages over the HTTP protocol. |
Constructors in org.apache.wicket.protocol.http with parameters of type Application | |
---|---|
AbstractHttpSessionStore(Application application)
Construct. |
|
HttpSessionStore(Application application)
Construct. |
|
MockHttpServletRequest(Application application,
javax.servlet.http.HttpSession session,
javax.servlet.ServletContext context)
Create the request using the supplied session object. |
|
MockServletContext(Application application,
java.lang.String path)
Create the mock object. |
|
SecondLevelCacheSessionStore(Application application,
SecondLevelCacheSessionStore.IPageStore pageStore)
Construct. |
|
WebSession(Application application,
Request request)
Deprecated. Use #WebSession(Request) instead |
Uses of Application in org.apache.wicket.resource |
---|
Constructors in org.apache.wicket.resource with parameters of type Application | |
---|---|
PropertiesFactory(Application application)
Construct. |
Uses of Application in org.apache.wicket.settings |
---|
Constructors in org.apache.wicket.settings with parameters of type Application | |
---|---|
Settings(Application application)
Create the application settings, carrying out any necessary initializations. |
Uses of Application in org.apache.wicket.util.lang |
---|
Methods in org.apache.wicket.util.lang with parameters of type Application | |
---|---|
static void |
PropertyResolver.destroy(Application application)
Clean up cache for this app. |
static void |
PropertyResolver.setClassCache(Application application,
PropertyResolver.IClassCache classCache)
Sets the PropertyResolver.IClassCache for the given application. |
Uses of Application in org.apache.wicket.util.tester |
---|
Subclasses of Application in org.apache.wicket.util.tester | |
---|---|
static class |
BaseWicketTester.DummyWebApplication
|
static class |
WicketTester.DummyWebApplication
Default dummy web application for testing. |
static class |
WicketTester.NonPageCachingDummyWebApplication
Dummy web application that does not support back button support but is cheaper to use for unit tests. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |