| 292 | } |
| 293 | |
| 294 | public static void initializeImportList(String importListCommandLineProperties) |
| 295 | { |
| 296 | StringTokenizer tokenizer = new StringTokenizer(importListCommandLineProperties, ":"); |
| 297 | int pos = 1; // Leave "" as the first import |
| 298 | ArrayList<String> importList = getPackageImportList(); |
| 299 | while (tokenizer.hasMoreTokens()) |
| 300 | { |
| 301 | String importItem = tokenizer.nextToken(); |
| 302 | if (!importItem.endsWith(".")) |
| 303 | importItem += "."; |
| 304 | importList.add(pos, importItem); |
| 305 | pos++; |
| 306 | } |
| 307 | } |
| 308 | |
| 309 | public void connect() throws ExecException { |
| 310 | executionEngine.init(); |