修改 Java 函数示例文件 UserFunctions.java,或者以下面的示例文件为模型来创建 一个新的文件 myfile.java:
====================myfile.java==================== import mypackage.* <=contain your functions public String myfctcall(...parameters from macro file...) { return ( mypackage.mymethod(...parameters...)); <=high-level call to your functions } public String lowlevelcall(...parameters...) { string result; .......code using many functions of your package... return(result) }