private static void addUserDefinedPathsTo(List<String> sourceFilePaths) {
   CommandLine commandLine = SmalltalkClassLoader.instance().commandLine();
   sourceFilePaths.addAll(commandLine.sourcePaths());
   List<String> runtimePaths = commandLine.runtimePaths();
   if (runtimePaths.isEmpty())
     System.out.println("Warning: no path to Redline Runtime specified.");
   else sourceFilePaths.addAll(commandLine.runtimePaths());
 }
Beispiel #2
0
 private SmalltalkClassLoader classLoader() {
   return SmalltalkClassLoader.instance();
 }