I need to use CombinationLookup class inside User Defined Java Class, im trying to do something similar to:
public boolean processRow(StepMetaInterface smi, StepDataInterface sdi) throws KettleException
{
...
CombinationLookupMeta = ...
CombinationLookup cl = new CombinationLookup(?,?,?,?);
boolean result = cl.processRow(smi,sdi);//??
...
return result;
}
I know how to create CombinationLookupMeta still dont know how to create CombinationLookup object neither to call processRow method, help me please
thanks