1 20 21 package cpmake; 22 23 import java.io.*; 24 25 interface ScriptInterpreter 26 { 27 public void set(String var, Object value) 28 throws CPMakeException; 29 public void call(String method, String param1) 30 throws CPMakeException; 31 public void call(String method, String param1, String param2) 32 throws CPMakeException; 33 public void source(String buildFile) 34 throws CPMakeException, FileNotFoundException, IOException; 35 public void cleanup(); 36 } 37 | Popular Tags |