Uses of Interface
net.i2p.app.ClientApp

Packages that use ClientApp
net.i2p.app Interfaces for classes to be started and stopped via clients.config. 
net.i2p.i2ptunnel   
net.i2p.jetty   
net.i2p.router.app Interface for classes to be started and stopped via clients.config. 
net.i2p.router.startup The I2P startup package loads the configuration when I2P is started. 
net.i2p.router.web   
 

Uses of ClientApp in net.i2p.app
 

Methods in net.i2p.app that return ClientApp
 ClientApp ClientAppManager.getRegisteredApp(String name)
          Get a registered app.
 

Methods in net.i2p.app with parameters of type ClientApp
 void ClientAppManager.notify(ClientApp app, ClientAppState state, String message, Exception e)
          Must be called on all state transitions except from UNINITIALIZED to INITIALIZED.
 boolean ClientAppManager.register(ClientApp app)
          Register with the manager under the given name, so that other clients may find it.
 void ClientAppManager.unregister(ClientApp app)
          Unregister with the manager.
 

Uses of ClientApp in net.i2p.i2ptunnel
 

Classes in net.i2p.i2ptunnel that implement ClientApp
 class TunnelControllerGroup
          Coordinate a set of tunnels within the JVM, loading and storing their config to disk, and building new ones as requested.
 

Uses of ClientApp in net.i2p.jetty
 

Classes in net.i2p.jetty that implement ClientApp
 class JettyStart
          Start Jetty where the args are one or more XML files.
 

Uses of ClientApp in net.i2p.router.app
 

Subinterfaces of ClientApp in net.i2p.router.app
 interface RouterApp
          If a class started via clients.config implements this interface, it will be used to manage the client, instead of starting with main() Clients implementing this interface MUST provide the following constructor: public MyClientApp(RouterContext context, ClientAppManager listener, String[] args) {...} All parameters are non-null.
 

Uses of ClientApp in net.i2p.router.startup
 

Methods in net.i2p.router.startup that return ClientApp
 ClientApp RouterAppManager.getRegisteredApp(String name)
          Get a registered app.
 

Methods in net.i2p.router.startup with parameters of type ClientApp
 void RouterAppManager.addAndStart(ClientApp app)
           
 void RouterAppManager.notify(ClientApp app, ClientAppState state, String message, Exception e)
          Must be called on all state transitions except from UNINITIALIZED to INITIALIZED.
 boolean RouterAppManager.register(ClientApp app)
          Register with the manager under the given name, so that other clients may find it.
 void RouterAppManager.unregister(ClientApp app)
          Unregister with the manager.
 

Uses of ClientApp in net.i2p.router.web
 

Classes in net.i2p.router.web that implement ClientApp
 class RouterConsoleRunner
          Start the router console.