Uses of Class
hkontrol.core.State

Packages that use State
hkontrol.core   
hkontrol.module.remotecontrol   
hkontrol.module.timer   
 

Uses of State in hkontrol.core
 

Methods in hkontrol.core that return State
protected  State AbstractModule.getState()
          returns the current State object.
 

Methods in hkontrol.core with parameters of type State
 void AbstractModule.construct(Configuration.Entry config, State state)
          Replaces the empty default constructor and must be called immediately after object instantiation.
 boolean Rule.matches(State state)
           
 

Constructors in hkontrol.core with parameters of type State
ImmutableState(State state)
          The only constructor expects a State object that can be accessed via ImmutableState.
ModuleFactory(State state)
           
RuleFactory(State state)
           
 

Uses of State in hkontrol.module.remotecontrol
 

Methods in hkontrol.module.remotecontrol with parameters of type State
abstract  void AbstractCommand.execute(java.lang.String parms, State state, java.io.PrintWriter writer)
           
 void QuitCommand.execute(java.lang.String parms, State state, java.io.PrintWriter writer)
           
 void HelpCommand.execute(java.lang.String parms, State state, java.io.PrintWriter writer)
           
 void SetCommand.execute(java.lang.String parms, State state, java.io.PrintWriter writer)
           
 void QueryCommand.execute(java.lang.String parms, State state, java.io.PrintWriter writer)
           
 

Constructors in hkontrol.module.remotecontrol with parameters of type State
ConnectionHandler(java.net.Socket socket, State state)
           
 

Uses of State in hkontrol.module.timer
 

Constructors in hkontrol.module.timer with parameters of type State
SimpleWatchdog(State state, java.lang.String property, int delay, int timeout)