Uses of Interface
org.apache.pivot.wtk.Application

Packages that use Application
org.apache.pivot.tools.json Contains utilities dealing with JSON data. 
org.apache.pivot.tools.xml Contains utilities dealing with XML data. 
org.apache.pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
 

Uses of Application in org.apache.pivot.tools.json
 

Classes in org.apache.pivot.tools.json that implement Application
 class JSONViewer
          Utility application that allows the user to browse a JSON structure using a tree view component.
 

Uses of Application in org.apache.pivot.tools.xml
 

Classes in org.apache.pivot.tools.xml that implement Application
 class XMLViewer
          Utility application that allows the user to browse an XML DOM using a tree view component.
 

Uses of Application in org.apache.pivot.wtk
 

Classes in org.apache.pivot.wtk that implement Application
 class ScriptApplication
          Script application loader.
 

Methods in org.apache.pivot.wtk that return Application
 Application BrowserApplicationContext.HostApplet.getApplication()
           
protected  Application ApplicationContext.getApplication()
           
static Application BrowserApplicationContext.getApplication(String name)
          Retrieves a named application.
 

Methods in org.apache.pivot.wtk with parameters of type Application
protected static void ApplicationContext.addApplication(Application application)
           
static Object BrowserApplicationContext.eval(String script, Application application)
          Evaluates a script in the page context and returns the result.
protected static void ApplicationContext.removeApplication(Application application)
           
protected  void ApplicationContext.setApplication(Application application)
           
 

Method parameters in org.apache.pivot.wtk with type arguments of type Application
static void DesktopApplicationContext.main(Class<? extends Application> applicationClass, String[] applicationArgs)
          Utility method to make it easier to define main() entry-points into applications.