// The methods in this class are called from the CallJavaDemo // macro at . // This class can be compiled with ImageJ's // Plugins>Compile and Run command. public class CallDemo { public static String method0() { return "method0"; } public static String method1(String arg1) { return "method1"+"("+arg1+")"; } public static String method2(String arg1, String arg2) { return "method2"+"("+arg1+", "+arg2+")"; } }