|
UseSet |
|
package Set;
import j4d.open.*;
class Examplet {
/* doUseSet create a selection using a set
*/
public void doUseSet(opProcess process) throws opException{
int mTargetTable = 1;
try {
opSet mSet = new opSet("My_Beautifull_Set");
process.UseSet(mSet);
}
catch (opException er){throw er;}
}
}
|
UseSet |
|