|
UnionSet |
|
package Set;
import j4d.open.*;
class Examplet {
/* doUnionSet concat set1 and set2 into setDest
*/
public void doUnionSet(opProcess process, opSet set1, opSet set2,
opSet setDest) throws opException{
try {
process.UnionSet(set1, set2, setDest);
process.UseSet(setDest);
}
catch (opException er){throw er;}
}
}
|
UnionSet |
|