Ejemplo n.º 1
0
 private boolean isLookupMulti(Table table) {
   InterpretationEnum interpretation = table.getInterpretation();
   if ((interpretation != null) && (interpretation.equals(InterpretationEnum.LOOKUPMULTI))) {
     if (table.getLookup() == null) {
       LOG.error("Lookup is null for table: " + table.getPath());
       return false;
     }
     return true;
   }
   ;
   return false;
 }
Ejemplo n.º 2
0
 private boolean isLookup(Table table) {
   InterpretationEnum interpretation = table.getInterpretation();
   return ((interpretation != null) && (interpretation.equals(InterpretationEnum.LOOKUP)));
 }