|
IsInSet |
|
package Set;
import j4d.open.*;
class Examplet {
/* getIsInSet tell you if a specified record is in the specified set
*/
public boolean getIsInSet(opProcess process, opSet set, int recordNumber) throws opException{
boolean mInSet;
try {
set.mRecordNumber = recordNumber;
mInSet = process.IsInSet(set);
}
catch (opException er){throw er;}
return mInSet;
}
}
|
IsInSet |
|