Class DaemonLoader.Context

    • Constructor Summary

      Constructors 
      Constructor Description
      Context()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String[] getArguments()
      Returns an array of String arguments supplied by the environment.
      DaemonController getController()
      Returns DaemonController object that can be used to control the Daemon instance that this DaemonContext is passed to.
      void setArguments​(java.lang.String[] args)  
      void setController​(DaemonController controller)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Context

        public Context()
    • Method Detail

      • getController

        public DaemonController getController()
        Description copied from interface: DaemonContext
        Returns DaemonController object that can be used to control the Daemon instance that this DaemonContext is passed to.
        Specified by:
        getController in interface DaemonContext
      • getArguments

        public java.lang.String[] getArguments()
        Description copied from interface: DaemonContext
        Returns an array of String arguments supplied by the environment. corresponding to the array of arguments given in the public static void main() method used as an entry point to most other java programs.
        Specified by:
        getArguments in interface DaemonContext
      • setArguments

        public void setArguments​(java.lang.String[] args)