Uses of Class
com.vaadin.Application

Packages that use Application
com.vaadin The Vaadin base package. 
com.vaadin.service   
com.vaadin.terminal   
com.vaadin.terminal.gwt.server   
com.vaadin.ui   
 

Uses of Application in com.vaadin
 

Methods in com.vaadin that return Application
 Application Application.UserChangeEvent.getApplication()
          Gets the application where the user change occurred.
 Application Application.WindowDetachEvent.getApplication()
          Gets the application from which the window was detached.
 Application Application.WindowAttachEvent.getApplication()
          Gets the application to which the window was attached.
 

Constructors in com.vaadin with parameters of type Application
Application.UserChangeEvent(Application source, Object newUser, Object prevUser)
          Constructor for user change event.
 

Uses of Application in com.vaadin.service
 

Methods in com.vaadin.service that return types with arguments of type Application
 Collection<Application> ApplicationContext.getApplications()
          Returns a collection of all the applications in this context.
 

Methods in com.vaadin.service with parameters of type Application
 void ApplicationContext.TransactionListener.transactionEnd(Application application, Object transactionData)
          Invoked at the end of every transaction.
 void ApplicationContext.TransactionListener.transactionStart(Application application, Object transactionData)
          Invoked at the beginning of every transaction.
 

Uses of Application in com.vaadin.terminal
 

Methods in com.vaadin.terminal that return Application
 Application ApplicationResource.getApplication()
          Gets the application of the resource.
 Application StreamResource.getApplication()
           
 Application ClassResource.getApplication()
          Gets the application of this resource.
 Application FileResource.getApplication()
           
 

Constructors in com.vaadin.terminal with parameters of type Application
ClassResource(Class<?> associatedClass, String resourceName, Application application)
          Creates a new application resource instance.
ClassResource(String resourceName, Application application)
          Creates a new application resource instance.
FileResource(File sourceFile, Application application)
          Creates a new file resource for providing given file for client terminals.
StreamResource(StreamResource.StreamSource streamSource, String filename, Application application)
          Creates a new stream resource for downloading from stream.
 

Uses of Application in com.vaadin.terminal.gwt.server
 

Fields in com.vaadin.terminal.gwt.server with type parameters of type Application
protected  HashSet<Application> AbstractWebApplicationContext.applications
           
protected  HashMap<Application,AbstractCommunicationManager> AbstractWebApplicationContext.applicationToAjaxAppMgrMap
           
protected  Map<Application,Set<PortletApplicationContext.PortletListener>> PortletApplicationContext.portletListeners
           
protected  Map<Application,Set<PortletApplicationContext2.PortletListener>> PortletApplicationContext2.portletListeners
           
protected  Map<javax.portlet.Portlet,Application> PortletApplicationContext.portletToApplication
           
protected  HashMap<String,Application> PortletApplicationContext2.portletWindowIdToApplicationMap
           
 

Methods in com.vaadin.terminal.gwt.server that return Application
protected  Application AbstractCommunicationManager.getApplication()
           
 Application PortletApplicationContext2.getApplicationForWindowId(String portletWindowId)
           
protected  Application AbstractApplicationServlet.getExistingApplication(HttpServletRequest request, boolean allowSessionCreation)
          Gets the existing application for given request.
protected  Application ApplicationRunnerServlet.getNewApplication(HttpServletRequest request)
           
protected abstract  Application AbstractApplicationServlet.getNewApplication(HttpServletRequest request)
          Creates a new application for the given request.
protected  Application ApplicationServlet.getNewApplication(HttpServletRequest request)
           
protected  Application AbstractApplicationPortlet.getNewApplication(javax.portlet.PortletRequest request)
           
 Application PortletApplicationContext.getPortletApplication(javax.portlet.Portlet portlet)
           
 

Methods in com.vaadin.terminal.gwt.server that return types with arguments of type Application
protected  Class<? extends Application> ApplicationRunnerServlet.getApplicationClass()
           
protected abstract  Class<? extends Application> AbstractApplicationServlet.getApplicationClass()
           
protected  Class<? extends Application> ApplicationServlet.getApplicationClass()
           
protected abstract  Class<? extends Application> AbstractApplicationPortlet.getApplicationClass()
           
protected  Class<? extends Application> ApplicationPortlet2.getApplicationClass()
           
 Collection<Application> AbstractWebApplicationContext.getApplications()
           
 

Methods in com.vaadin.terminal.gwt.server with parameters of type Application
protected  void WebApplicationContext.addApplication(Application application)
           
protected  void PortletApplicationContext2.addApplication(Application application, String portletWindowId)
           
 void PortletApplicationContext.addPortletListener(Application app, PortletApplicationContext.PortletListener listener)
           
 void PortletApplicationContext2.addPortletListener(Application app, PortletApplicationContext2.PortletListener listener)
           
 CommunicationManager AbstractApplicationServlet.createCommunicationManager(Application application)
          Deprecated. Instead of overriding this method, override WebApplicationContext implementation via AbstractApplicationServlet.getApplicationContext(HttpSession) method and in that customized implementation return your CommunicationManager in WebApplicationContext.getApplicationManager(Application, AbstractApplicationServlet) method.
protected  PortletCommunicationManager PortletApplicationContext2.createPortletCommunicationManager(Application application)
           
protected  Window AbstractCommunicationManager.doGetApplicationWindow(AbstractCommunicationManager.Request request, AbstractCommunicationManager.Callback callback, Application application, Window assumedWindow)
          TODO New method - document me!
protected  void AbstractWebApplicationContext.endTransaction(Application application, Object request)
          Sends a notification that a transaction has ended.
protected  void WebApplicationContext.endTransaction(Application application, Object request)
           
 void PortletApplicationContext2.firePortletActionRequest(Application app, Window window, javax.portlet.ActionRequest request, javax.portlet.ActionResponse response)
           
 void PortletApplicationContext2.firePortletEventRequest(Application app, Window window, javax.portlet.EventRequest request, javax.portlet.EventResponse response)
           
 void PortletApplicationContext2.firePortletRenderRequest(Application app, Window window, javax.portlet.RenderRequest request, javax.portlet.RenderResponse response)
           
 void PortletApplicationContext2.firePortletResourceRequest(Application app, Window window, javax.portlet.ResourceRequest request, javax.portlet.ResourceResponse response)
           
protected  PortletCommunicationManager PortletApplicationContext2.getApplicationManager(Application application)
           
 CommunicationManager WebApplicationContext.getApplicationManager(Application application, AbstractApplicationServlet servlet)
          Gets communication manager for an application.
protected  Window AbstractApplicationServlet.getApplicationWindow(HttpServletRequest request, CommunicationManager applicationManager, Application application)
          Gets the existing application or create a new one.
protected  Map<String,String> AbstractApplicationPortlet.getVaadinConfigurationMap(javax.portlet.RenderRequest request, javax.portlet.RenderResponse response, Application application, String themeURI)
          Returns the configuration parameters to pass to the client.
 boolean AbstractCommunicationManager.handleVariableBurst(Object source, Application app, boolean success, String burst)
           
protected  void AbstractWebApplicationContext.removeApplication(Application application)
           
protected  void PortletApplicationContext.removeApplication(Application application)
           
protected  void PortletApplicationContext2.removeApplication(Application application)
           
 void PortletApplicationContext.removePortletListener(Application app, PortletApplicationContext.PortletListener listener)
           
 void PortletApplicationContext2.removePortletListener(Application app, PortletApplicationContext2.PortletListener listener)
           
 void PortletApplicationContext.setPortletApplication(javax.portlet.Portlet portlet, Application app)
           
protected  void AbstractWebApplicationContext.startTransaction(Application application, Object request)
          Sends a notification that a transaction is starting.
protected  void WebApplicationContext.startTransaction(Application application, Object request)
           
protected  void AbstractApplicationServlet.writeAjaxPage(HttpServletRequest request, HttpServletResponse response, Window window, Application application)
          This method writes the html host page (aka kickstart page) that starts the actual Vaadin application.
protected  void AbstractApplicationPortlet.writeAjaxPage(javax.portlet.RenderRequest request, javax.portlet.RenderResponse response, Window window, Application application)
          Writes the html host page (aka kickstart page) that starts the actual Vaadin application.
protected  void AbstractApplicationPortlet.writeAjaxPageHtmlVaadinScripts(javax.portlet.RenderRequest request, javax.portlet.RenderResponse response, BufferedWriter writer, Application application, String themeName)
          This method writes the scripts to load the widgetset and the themes as well as define Vaadin configuration parameters on the HTML fragment that starts the actual Vaadin application.
protected  void AbstractApplicationServlet.writeAjaxPageHtmlVaadinScripts(Window window, String themeName, Application application, BufferedWriter page, String appUrl, String themeUri, String appId, HttpServletRequest request)
          Method to write the script part of the page which loads needed Vaadin scripts and themes.
 

Constructors in com.vaadin.terminal.gwt.server with parameters of type Application
AbstractCommunicationManager(Application application)
          TODO New constructor - document me!
CommunicationManager(Application application)
          TODO New constructor - document me!
CommunicationManager(Application application, AbstractApplicationServlet applicationServlet)
          Deprecated. use CommunicationManager.CommunicationManager(Application) instead
PortletCommunicationManager(Application application)
           
 

Uses of Application in com.vaadin.ui
 

Methods in com.vaadin.ui that return Application
 Application Window.getApplication()
           
 Application Component.getApplication()
          Gets the application object to which the component is attached.
 Application AbstractComponent.getApplication()
          Gets the application object to which the component is attached.
 

Methods in com.vaadin.ui with parameters of type Application
 void Window.setApplication(Application application)
          Sets the application this window is attached to.
 



Copyright © 2000-2011 Vaadin Ltd. All Rights Reserved.