コード例 #1
0
 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());
 }
コード例 #2
0
ファイル: Stic.java プロジェクト: sl4m/redline-smalltalk
 private SmalltalkClassLoader classLoader() {
   return SmalltalkClassLoader.instance();
 }