Interface MainService.Main

  • Enclosing interface:
    MainService

    public static interface MainService.Main
    Data structure containing main class and argument values.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String[] args()
      Gets the arguments to pass to the class's main method.
      String className()
      Gets the name of the class containing the main method to run.
      void exec()
      Runs the main method with the associated arguments.
    • Method Detail

      • className

        String className()
        Gets the name of the class containing the main method to run.
      • args

        String[] args()
        Gets the arguments to pass to the class's main method.
      • exec

        void exec()
        Runs the main method with the associated arguments.