For IntelliJ IDEA,
Android Studio or Eclipse



private void myMethod () {CommonCodeTable c =
CommonCodeTable.Table commonCodeTableTable;CommonCodeTable.Table commonCodeTableTable2;new CommonCodeTable(commonCodeTableTable.name(), commonCodeTableTable2.getTableType())
- Smart code suggestions by Codota
}
public static String getTableValue(int tableNo, int code, int code2) { CommonCodeTable cct = getTable(tableNo); TableEntry te = cct.get(code, code2); if (te == null) return null; return te.value; }
static private CodeFlagTables useCC(short fxy, int cc) { CodeFlagTables cft = tableMap.get(fxy); if (cft == null) { CommonCodeTable cct = CommonCodeTable.getTable(cc); cft = new CodeFlagTables(fxy, cct.getTableName(), cct.getMap()); tableMap.put(fxy, cft); } return cft; }
public static String getTableValue(int tableNo, int code) { CommonCodeTable cct = getTable(tableNo); if (cct == null) { logger.error("WMO common table {} is not implemented", tableNo); return null; } TableEntry te = cct.get(code); if (te == null) return null; return te.value; }
public static String getTableValue(int tableNo, int code) { CommonCodeTable cct = getTable(tableNo); if (cct == null) { logger.error("WMO common table {} is not implemented", tableNo); return null; } TableEntry te = cct.get(code); if (te == null) return null; return te.value; }
public static String getTableValue(int tableNo, int code, int code2) { CommonCodeTable cct = getTable(tableNo); TableEntry te = cct.get(code, code2); if (te == null) return null; return te.value; }
public static String getTableValue(int tableNo, int code, int code2) { CommonCodeTable cct = getTable(tableNo); TableEntry te = cct.get(code, code2); if (te == null) return null; return te.value; }
public static String getTableValue(int tableNo, int code) { CommonCodeTable cct = getTable(tableNo); if (cct == null) { logger.error("WMO common table {} is not implemented", tableNo); return null; } TableEntry te = cct.get(code); if (te == null) return null; return te.value; }