Uses of Class
wicket.Application

Packages that use Application
wicket The core Wicket package. 
wicket.markup Base package for markup. 
wicket.markup.html Base package of HTML markup. 
wicket.markup.html.resources Support classes for HTML specific resources. 
wicket.markup.parser.filter Default parsing extensions. 
wicket.protocol.http HTTP implementation. 
wicket.protocol.http.portlet Wicket interface to the JSR-168 portlet API. 
wicket.resource Locale aware resouce loaders. 
wicket.resource.loader   
wicket.settings   
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 wicket
 

Fields in wicket declared as Application
protected  Application RequestCycle.application
          The application object.
 

Methods in 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 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)
           
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 wicket with parameters of type Application
Localizer(Application application)
          Create the utils instance class backed by the configuration information contained within the supplied application object.
Session(Application application)
          Constructor.
 

Uses of Application in wicket.markup
 

Constructors in wicket.markup with parameters of type Application
MarkupCache(Application application)
          Constructor.
MarkupParserFactory(Application application)
          Construct.
MarkupParserFactory(Application application, IMarkupFilter filter)
          Construct.
MarkupParserFactory(Application application, IMarkupFilter[] filters)
          Construct.
 

Uses of Application in wicket.markup.html
 

Methods in 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 wicket.markup.html with parameters of type Application
PackageResourceReference(Application application, java.lang.Class scope, java.lang.String name)
          Deprecated. Constuctor 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. Constuctor to get a resource reference to a packaged resource.
PackageResourceReference(Application application, java.lang.String name)
          Deprecated. Constuctor to get a resource reference to a packaged resource.
 

Uses of Application in wicket.markup.html.resources
 

Methods in wicket.markup.html.resources with parameters of type Application
protected  PackageResourceReference PackagedResourceReference.createPackageResourceReference(Application app, java.lang.Class scope, java.lang.String name)
          Creates new package resource reference.
protected  PackageResourceReference JavaScriptReference.createPackageResourceReference(Application app, java.lang.Class scope, java.lang.String name)
           
 

Constructors in wicket.markup.html.resources with parameters of type Application
CompressedPackageResourceReference(Application application, java.lang.Class scope, java.lang.String name)
          Deprecated. Construct.
CompressedPackageResourceReference(Application application, java.lang.Class scope, java.lang.String name, java.util.Locale locale, java.lang.String style)
          Deprecated. Construct.
CompressedPackageResourceReference(Application application, java.lang.String name)
          Deprecated. Construct.
 

Uses of Application in wicket.markup.parser.filter
 

Constructors in wicket.markup.parser.filter with parameters of type Application
PrependContextPathHandler(Application application)
          This constructor will get the context path from the application settings.
 

Uses of Application in wicket.protocol.http
 

Subclasses of Application in wicket.protocol.http
 class MockWebApplication
          This class provides a mock implementation of a Wicket HTTP based application that can be used for testing.
 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 wicket.protocol.http 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, java.lang.String path)
          Create the mock object.
WebSession(Application application)
          Constructor
 

Uses of Application in wicket.protocol.http.portlet
 

Subclasses of Application in wicket.protocol.http.portlet
 class PortletApplication
          A portlet application is a subclass of Application which associates with an instance of WicketPortlet to serve pages as portlets.
 

Uses of Application in wicket.resource
 

Methods in wicket.resource with parameters of type Application
 Properties PropertiesFactory.get(Application application, java.lang.Class clazz, java.lang.String style, java.util.Locale locale)
           
 Properties IPropertiesFactory.get(Application application, java.lang.Class clazz, java.lang.String style, java.util.Locale locale)
          Get the properties for ...
 

Uses of Application in wicket.resource.loader
 

Fields in wicket.resource.loader declared as Application
protected  Application AbstractStringResourceLoader.application
          Wickets application object
 

Constructors in wicket.resource.loader with parameters of type Application
AbstractStringResourceLoader(Application application)
          Create and initialise the resource loader.
ApplicationStringResourceLoader(Application application)
          Create and initialise the resource loader.
ClassStringResourceLoader(Application application, java.lang.Class clazz)
          Create and initialise the resource loader.
ComponentStringResourceLoader(Application application)
          Create and initialise the resource loader.
WicketBundleStringResourceLoader(Application application)
          Create and initialise the resource loader.
WicketBundleStringResourceLoader(Application application, java.lang.Class clazz)
          Create and initialise the resource loader.
 

Uses of Application in wicket.settings
 

Constructors in wicket.settings with parameters of type Application
Settings(Application application)
          Create the application settings, carrying out any necessary initialisations.
 

Uses of Application in wicket.util.tester
 

Subclasses of Application in wicket.util.tester
 class WicketTester
          A helper to ease unit testing of Wicket applications without the need for a servlet container.
 



Copyright © 2004-2007 Wicket developers. All Rights Reserved.