MCPcopy Create free account
hub / github.com/apache/pig / getPackageImportList

Method getPackageImportList

src/org/apache/pig/impl/PigContext.java:873–883  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

871 }
872
873 public static ArrayList<String> getPackageImportList() {
874 if (packageImportList.get() == null) {
875 ArrayList<String> importlist = new ArrayList<String>();
876 importlist.add("");
877 importlist.add("java.lang.");
878 importlist.add("org.apache.pig.builtin.");
879 importlist.add("org.apache.pig.impl.builtin.");
880 packageImportList.set(importlist);
881 }
882 return packageImportList.get();
883 }
884
885 public static void setPackageImportList(ArrayList<String> list) {
886 packageImportList.set(list);

Callers 8

testImportListMethod · 0.95
saveUdfImportListMethod · 0.95
newJobConfMethod · 0.95
getJobMethod · 0.95
initializeMethod · 0.95
processLoadsMethod · 0.95
initializeImportListMethod · 0.95
resolveClassNameMethod · 0.95

Calls 3

getMethod · 0.65
addMethod · 0.65
setMethod · 0.65

Tested by 1

testImportListMethod · 0.76