Beispiel #1
0
 def load_config(self, config_header: ConfigHeader):
     self.executable_path = config_header.getpath('java_executable_path')
     self.logger.info("Java executable is configured as {}".format(
         self.executable_path))
Beispiel #2
0
 def load_config(self, config_header: ConfigHeader) -> None:
     self.path = config_header.getpath('path')
     if self.path == None:
         print("Error: No executable path set.")
Beispiel #3
0
 def load_config(self, config_header: ConfigHeader):
     # Grabs the executable in the config
     self.executable_path = config_header.getpath('executable_path')
     self.logger.info("Executable is configured as {}".format(self.executable_path))
Beispiel #4
0
 def load_config(self, config_header: ConfigHeader):
     self.dotnet_executable_path = config_header.getpath(
         'dotnet_executable_path')
     self.logger.info(".NET executable is configured as {}".format(
         self.dotnet_executable_path))
 def load_config(self, config_header: ConfigHeader) -> None:
     self.path = config_header.getpath('path')