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

link|improve this question

80% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.