Fix Bug TDI-28795 : [PIG] Compilation issue if a tMap is located in a Lookup branch.
https://jira.talendforge.org/browse/TDI-28795 git-svn-id: http://talendforge.org/svn/tos/branches/branch-5_4@114786 f6f1c999-d317-4740-80b0-e6d1abc6f99e
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package routines.system;
|
||||
|
||||
/**
|
||||
* talend pig component helper
|
||||
*
|
||||
* @author Administrator
|
||||
*
|
||||
*/
|
||||
public class PigHelper {
|
||||
|
||||
private java.util.List<Object[]> pigLatins = new java.util.ArrayList<Object[]>();
|
||||
|
||||
|
||||
public java.util.List<Object[]> getPigLatins() {
|
||||
return this.pigLatins;
|
||||
}
|
||||
|
||||
public void add(String type, Object pigLatin) {
|
||||
Object[] pl = new Object[2];
|
||||
pl[0] = type;
|
||||
pl[1] = pigLatin;
|
||||
pigLatins.add(pl);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user