Modify the Java function sample file UserFunctions.java, or create a new file modeled on the following example file, called 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)
}