Uses of Class
org.apache.wicket.Application

Packages that use Application
org.apache.wicket The core Wicket package. 
org.apache.wicket.core.request.mapper   
org.apache.wicket.core.util.lang Java utilities. 
org.apache.wicket.mock   
org.apache.wicket.protocol.http HTTP implementation. 
org.apache.wicket.protocol.http.mock   
org.apache.wicket.resource Locale aware resouce loaders. 
org.apache.wicket.settings.def   
 

Uses of Application in org.apache.wicket
 

Fields in org.apache.wicket declared as Application
protected  Application DefaultPageManagerProvider.application
           
 

Methods in org.apache.wicket that return Application
static Application Application.get()
          Get Application for current thread.
static Application Application.get(String applicationKey)
          Gets the Application based on the application key of that application.
static Application ThreadContext.getApplication()
           
 Application Session.getApplication()
          Get the application that is currently working with this session.
 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 Initializer.destroy(Application application)
           
 void IInitializer.destroy(Application application)
           
 void Initializer.init(Application application)
           
 void IInitializer.init(Application application)
           
 void IApplicationListener.onAfterInitialized(Application application)
          Called after application instance has been initialized
 void ApplicationListenerCollection.onAfterInitialized(Application application)
           
 void IApplicationListener.onBeforeDestroyed(Application application)
          Called before application instance is destroyed
 void ApplicationListenerCollection.onBeforeDestroyed(Application application)
           
static void ThreadContext.setApplication(Application application)
          Binds the specified application to current thread.
 

Constructors in org.apache.wicket with parameters of type Application
DefaultMapperContext(Application application)
          Constructor.
DefaultPageManagerProvider(Application application)
          Construct.
SystemMapper(Application application)
          Constructor
 

Uses of Application in org.apache.wicket.core.request.mapper
 

Constructors in org.apache.wicket.core.request.mapper with parameters of type Application
CryptoMapper(IRequestMapper wrappedMapper, Application application)
          Construct.
 

Uses of Application in org.apache.wicket.core.util.lang
 

Methods in org.apache.wicket.core.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.mock
 

Subclasses of Application in org.apache.wicket.mock
 class MockApplication
          WebApplication used for testing.
 

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.
 

Uses of Application in org.apache.wicket.protocol.http.mock
 

Constructors in org.apache.wicket.protocol.http.mock with parameters of type Application
MockHttpServletRequest(Application application, javax.servlet.http.HttpSession session, javax.servlet.ServletContext context)
          Create the request using the supplied session object.
MockServletContext(Application application, String path)
          Create the mock object.
 

Uses of Application in org.apache.wicket.resource
 

Methods in org.apache.wicket.resource with parameters of type Application
static void CoreLibrariesContributor.contribute(Application application, IHeaderResponse response)
          Contributes the backing library plus the implementation of Wicket.Event.
static void CoreLibrariesContributor.contributeAjax(Application application, IHeaderResponse response)
          Contributes the Ajax backing library plus wicket-event.js and wicket-ajax.js implementations.
 

Uses of Application in org.apache.wicket.settings.def
 

Constructors in org.apache.wicket.settings.def with parameters of type Application
FrameworkSettings(Application application)
          Construct.
ResourceSettings(Application application)
          Configures Wicket's default ResourceLoaders.
For an example in FooApplication let bar.Foo extend Component, this results in the following ordering: component specific bar/Foo.properties org/apache/wicket/Component.properties package specific bar/package.properties package.properties (on Foo's class loader) org/apache/wicket/package.properties org/apache/package.properties org/package.properties package.properties (on Component's class loader) application specific FooApplication.properties Application.properties validator specific Initializer specific bar.Foo.properties (Foo implementing IInitializer)
StoreSettings(Application application)
          Construct.
 



Copyright © 2006-2013 Apache Software Foundation. All Rights Reserved.