Uses of Class
org.apache.wicket.Application

Packages that use Application
org.apache.wicket The core Wicket package. 
org.apache.wicket.authentication   
org.apache.wicket.devutils.debugbar   
org.apache.wicket.devutils.inspector Classes that make debugging Wicket HTML applications easier. 
org.apache.wicket.examples   
org.apache.wicket.examples.ajax.builtin   
org.apache.wicket.examples.ajax.prototype   
org.apache.wicket.examples.authentication   
org.apache.wicket.examples.authorization   
org.apache.wicket.examples.breadcrumb   
org.apache.wicket.examples.captcha   
org.apache.wicket.examples.compref   
org.apache.wicket.examples.customresourceloading   
org.apache.wicket.examples.dates   
org.apache.wicket.examples.echo   
org.apache.wicket.examples.encodings   
org.apache.wicket.examples.forminput   
org.apache.wicket.examples.frames   
org.apache.wicket.examples.guestbook   
org.apache.wicket.examples.guice   
org.apache.wicket.examples.hangman   
org.apache.wicket.examples.hellobrowser   
org.apache.wicket.examples.helloworld   
org.apache.wicket.examples.images   
org.apache.wicket.examples.kittenCaptcha   
org.apache.wicket.examples.library   
org.apache.wicket.examples.linkomatic   
org.apache.wicket.examples.navomatic   
org.apache.wicket.examples.nested   
org.apache.wicket.examples.niceurl   
org.apache.wicket.examples.portlet.menu   
org.apache.wicket.examples.pub2   
org.apache.wicket.examples.repeater   
org.apache.wicket.examples.signin   
org.apache.wicket.examples.signin2   
org.apache.wicket.examples.stateless   
org.apache.wicket.examples.staticpages   
org.apache.wicket.examples.stockquote   
org.apache.wicket.examples.template   
org.apache.wicket.examples.unicodeconverter   
org.apache.wicket.examples.upload   
org.apache.wicket.examples.velocity   
org.apache.wicket.examples.wizard   
org.apache.wicket.extensions   
org.apache.wicket.extensions.ajax.markup.html.form.upload   
org.apache.wicket.guice   
org.apache.wicket.injection.web   
org.apache.wicket.jmx Exposes Wicket's settings via Java Management Extensions (JMX)
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.markup.resolver Resolvers implement the IComponentResolver interface and must be registered with the application. 
org.apache.wicket.protocol.http HTTP implementation. 
org.apache.wicket.resource Locale aware resouce loaders. 
org.apache.wicket.settings   
org.apache.wicket.spring   
org.apache.wicket.spring.common.web   
org.apache.wicket.spring.injection.annot This package contains all the classes to make your wicket components and other pojos @SpringBean annotation aware. 
org.apache.wicket.threadtest.apps.app1   
org.apache.wicket.threadtest.apps.app2   
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. 
org.apache.wicket.velocity   
 

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(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.authentication
 

Subclasses of Application in org.apache.wicket.authentication
 class AuthenticatedWebApplication
          A web application subclass that does role-based authentication.
 

Uses of Application in org.apache.wicket.devutils.debugbar
 

Methods in org.apache.wicket.devutils.debugbar with parameters of type Application
 void DebugBarInitializer.init(Application application)
          
static void DebugBar.registerContributor(IDebugBarContributor contrib, Application application)
          Register your own custom contributor that will be part of the debug bar.
 

Uses of Application in org.apache.wicket.devutils.inspector
 

Constructors in org.apache.wicket.devutils.inspector with parameters of type Application
ApplicationView(String id, Application application)
          Constructor.
 

Uses of Application in org.apache.wicket.examples
 

Subclasses of Application in org.apache.wicket.examples
 class WicketExampleApplication
          Wicket Example Application class.
 

Uses of Application in org.apache.wicket.examples.ajax.builtin
 

Subclasses of Application in org.apache.wicket.examples.ajax.builtin
 class AjaxApplication
          Application object for the wicked ajax examples
 

Uses of Application in org.apache.wicket.examples.ajax.prototype
 

Subclasses of Application in org.apache.wicket.examples.ajax.prototype
 class PrototypeApplication
          Application object for the Prototype.js ajax demo page.
 

Uses of Application in org.apache.wicket.examples.authentication
 

Subclasses of Application in org.apache.wicket.examples.authentication
 class MyAuthenticatedWebApplication
          A role-authorized, authenticated web application in just a few lines of code.
 

Uses of Application in org.apache.wicket.examples.authorization
 

Subclasses of Application in org.apache.wicket.examples.authorization
 class RolesApplication
          Application object for this example.
 

Uses of Application in org.apache.wicket.examples.breadcrumb
 

Subclasses of Application in org.apache.wicket.examples.breadcrumb
 class BreadCrumbApplication
          Application class for the bread crumb example.
 

Uses of Application in org.apache.wicket.examples.captcha
 

Subclasses of Application in org.apache.wicket.examples.captcha
 class CaptchaApplication
          Application class for the captcha example.
 

Uses of Application in org.apache.wicket.examples.compref
 

Subclasses of Application in org.apache.wicket.examples.compref
 class ComponentReferenceApplication
          Application class for the component reference.
 

Uses of Application in org.apache.wicket.examples.customresourceloading
 

Subclasses of Application in org.apache.wicket.examples.customresourceloading
 class CustomResourceLoadingApplication
          Application class for the custom resource loading example.
 

Uses of Application in org.apache.wicket.examples.dates
 

Subclasses of Application in org.apache.wicket.examples.dates
 class DatesApplication
          Application class for the dates example.
 

Uses of Application in org.apache.wicket.examples.echo
 

Subclasses of Application in org.apache.wicket.examples.echo
 class EchoApplication
          Application class for the Echo example.
 

Uses of Application in org.apache.wicket.examples.encodings
 

Subclasses of Application in org.apache.wicket.examples.encodings
 class EncodingsApplication
          Wicket Application class for hello world example.
 

Uses of Application in org.apache.wicket.examples.forminput
 

Subclasses of Application in org.apache.wicket.examples.forminput
 class FormInputApplication
          Application class for form input example.
 

Uses of Application in org.apache.wicket.examples.frames
 

Subclasses of Application in org.apache.wicket.examples.frames
 class FramesApplication
          Application class for the frames example.
 

Uses of Application in org.apache.wicket.examples.guestbook
 

Subclasses of Application in org.apache.wicket.examples.guestbook
 class GuestBookApplication
          Guest book application.
 

Uses of Application in org.apache.wicket.examples.guice
 

Subclasses of Application in org.apache.wicket.examples.guice
 class GuiceApplication
          Application for Google Guice integration example.
 

Uses of Application in org.apache.wicket.examples.hangman
 

Subclasses of Application in org.apache.wicket.examples.hangman
 class HangmanApplication
          Class defining the main Game application.
 

Uses of Application in org.apache.wicket.examples.hellobrowser
 

Subclasses of Application in org.apache.wicket.examples.hellobrowser
 class HelloBrowserApplication
          Application class for hello browser example.
 

Uses of Application in org.apache.wicket.examples.helloworld
 

Subclasses of Application in org.apache.wicket.examples.helloworld
 class HelloWorldApplication
          Application class for hello world example.
 

Uses of Application in org.apache.wicket.examples.images
 

Subclasses of Application in org.apache.wicket.examples.images
 class ImagesApplication
          Application class for the linkomatic example.
 

Uses of Application in org.apache.wicket.examples.kittenCaptcha
 

Subclasses of Application in org.apache.wicket.examples.kittenCaptcha
 class WicketApplication
          Application object for your web application.
 

Uses of Application in org.apache.wicket.examples.library
 

Subclasses of Application in org.apache.wicket.examples.library
 class LibraryApplication
          Application class for the library example.
 

Uses of Application in org.apache.wicket.examples.linkomatic
 

Subclasses of Application in org.apache.wicket.examples.linkomatic
 class LinkomaticApplication
          Application class for the linkomatic example.
 

Uses of Application in org.apache.wicket.examples.navomatic
 

Subclasses of Application in org.apache.wicket.examples.navomatic
 class NavomaticApplication
          Application class.
 

Uses of Application in org.apache.wicket.examples.nested
 

Subclasses of Application in org.apache.wicket.examples.nested
 class NestedApplication
          Application class for the nested structure example.
 

Uses of Application in org.apache.wicket.examples.niceurl
 

Subclasses of Application in org.apache.wicket.examples.niceurl
 class NiceUrlApplication
          Application class for this example.
 

Uses of Application in org.apache.wicket.examples.portlet.menu
 

Subclasses of Application in org.apache.wicket.examples.portlet.menu
 class WicketExamplesMenuApplication
           
 

Uses of Application in org.apache.wicket.examples.pub2
 

Subclasses of Application in org.apache.wicket.examples.pub2
 class PubApplication
          Application class for the linkomatic example.
 

Uses of Application in org.apache.wicket.examples.repeater
 

Subclasses of Application in org.apache.wicket.examples.repeater
 class RepeaterApplication
          application class for repeater examples application
 

Uses of Application in org.apache.wicket.examples.signin
 

Subclasses of Application in org.apache.wicket.examples.signin
 class SignInApplication
          Forms example.
 

Uses of Application in org.apache.wicket.examples.signin2
 

Subclasses of Application in org.apache.wicket.examples.signin2
 class SignIn2Application
          Forms example.
 

Uses of Application in org.apache.wicket.examples.stateless
 

Subclasses of Application in org.apache.wicket.examples.stateless
 class StatelessApplication
          Application class for the stateless application.
 

Uses of Application in org.apache.wicket.examples.staticpages
 

Subclasses of Application in org.apache.wicket.examples.staticpages
 class Application
          Examples for serving static files
 

Uses of Application in org.apache.wicket.examples.stockquote
 

Subclasses of Application in org.apache.wicket.examples.stockquote
 class StockQuoteApplication
          Application class for stock quote example.
 

Uses of Application in org.apache.wicket.examples.template
 

Subclasses of Application in org.apache.wicket.examples.template
 class TemplateApplication
          Application class for the template example.
 

Uses of Application in org.apache.wicket.examples.unicodeconverter
 

Subclasses of Application in org.apache.wicket.examples.unicodeconverter
 class UnicodeConverterApplication
          Application class for the unicode converter example.
 

Uses of Application in org.apache.wicket.examples.upload
 

Subclasses of Application in org.apache.wicket.examples.upload
 class UploadApplication
          Application class for org.apache.wicket.examples.upload example.
 

Uses of Application in org.apache.wicket.examples.velocity
 

Subclasses of Application in org.apache.wicket.examples.velocity
 class VelocityTemplateApplication
          Application class for velocity template example.
 

Uses of Application in org.apache.wicket.examples.wizard
 

Subclasses of Application in org.apache.wicket.examples.wizard
 class WizardApplication
          Application class for the wizard example.
 

Uses of Application in org.apache.wicket.extensions
 

Methods in org.apache.wicket.extensions with parameters of type Application
 void Initializer.init(Application application)
           
 

Uses of Application in org.apache.wicket.extensions.ajax.markup.html.form.upload
 

Methods in org.apache.wicket.extensions.ajax.markup.html.form.upload with parameters of type Application
 void UploadProgressBar.ComponentInitializer.init(Application application)
           
 

Uses of Application in org.apache.wicket.guice
 

Constructors in org.apache.wicket.guice with parameters of type Application
GuiceComponentInjector(Application app)
          Creates a new Wicket GuiceComponentInjector instance.
GuiceComponentInjector(Application app, com.google.inject.Injector injector)
          Creates a new Wicket GuiceComponentInjector instance, using the provided Guice Injector instance.
GuiceComponentInjector(Application app, com.google.inject.Module... modules)
          Creates a new Wicket GuiceComponentInjector instance, using the supplied Guice Module instances to create a new Guice Injector instance internally.
InjectionFlagCachingGuiceComponentInjector(Application app, com.google.inject.Injector injector)
          Construct.
 

Uses of Application in org.apache.wicket.injection.web
 

Methods in org.apache.wicket.injection.web with parameters of type Application
static void InjectorHolder.setInjector(ConfigurableInjector newInjector, Application application)
          Sets an injector NOTICE this method is not thread safe.
 

Uses of Application in org.apache.wicket.jmx
 

Methods in org.apache.wicket.jmx with parameters of type Application
 void Initializer.destroy(Application application)
           
 void Initializer.init(Application application)
           
 

Constructors in org.apache.wicket.jmx with parameters of type Application
Application(Application application)
          Create.
ApplicationSettings(Application application)
          Create.
CookieValuePersisterSettings(Application application)
          Create.
DebugSettings(Application application)
          Create.
MarkupSettings(Application application)
          Create.
PageSettings(Application application)
          Create.
RequestCycleSettings(Application application)
          Create.
RequestLogger(Application application)
          Construct.
ResourceSettings(Application application)
          Create.
SecuritySettings(Application application)
          Create.
SessionSettings(Application application)
          Create.
 

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, Class<?> scope, 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, Class<?> scope, 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, Class<?> scope, String name)
          Binds a resource to the given application object.
static void PackageResource.bind(Application application, Class<?> scope, String name, Locale locale)
          Binds a resource to the given application object.
static void PackageResource.bind(Application application, Class<?> scope, String name, Locale locale, 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, Class scope, String name)
          Deprecated. Constructor to get a resource reference to a packaged resource.
PackageResourceReference(Application application, Class scope, String name, Locale locale, String style)
          Deprecated. Constructor to get a resource reference to a packaged resource.
PackageResourceReference(Application application, 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, Class<?> scope, String name)
          Creates new package resource reference.
protected  ResourceReference JavaScriptReference.createPackageResourceReference(Application app, Class<?> scope, String name)
           
 

Constructors in org.apache.wicket.markup.html.resources with parameters of type Application
CompressedPackageResourceReference(Application application, Class<?> scope, String name)
          Deprecated.  
CompressedPackageResourceReference(Application application, Class<?> scope, String name, Locale locale, String style)
          Deprecated.  
CompressedPackageResourceReference(Application application, String name)
          Deprecated.  
 

Uses of Application in org.apache.wicket.markup.resolver
 

Methods in org.apache.wicket.markup.resolver with parameters of type Application
static boolean ComponentResolvers.resolve(Application application, MarkupContainer container, MarkupStream markupStream, ComponentTag tag)
          Attempts to resolve a component using resolvers.
 

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, 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.spring
 

Subclasses of Application in org.apache.wicket.spring
 class SpringWebApplication
          Deprecated. when using java5 it is preferrable to use SpringBean annotations for injection rather then this spring-specific application subclass with its helpers. To setup SpringBean add the following line to your WebApplication subclass init method addComponentInstantiationListener(new SpringComponentInjector(this));
 

Uses of Application in org.apache.wicket.spring.common.web
 

Subclasses of Application in org.apache.wicket.spring.common.web
 class ExampleApplication
          Application class for our examples
 

Uses of Application in org.apache.wicket.spring.injection.annot
 

Subclasses of Application in org.apache.wicket.spring.injection.annot
 class AnnotSpringWebApplication
          Deprecated. instead in application.init() do addComponentInstantiationListener(new SpringComponentInjector(this)); TODO remove post 1.3
 

Uses of Application in org.apache.wicket.threadtest.apps.app1
 

Subclasses of Application in org.apache.wicket.threadtest.apps.app1
 class TestApp1
          Test application
 

Uses of Application in org.apache.wicket.threadtest.apps.app2
 

Subclasses of Application in org.apache.wicket.threadtest.apps.app2
 class TestApp2
          Test application
 

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.
 

Uses of Application in org.apache.wicket.velocity
 

Methods in org.apache.wicket.velocity with parameters of type Application
 void Initializer.init(Application application)
           
 



Copyright © 2004-2011 Apache Software Foundation. All Rights Reserved.