Пример #1
0
 public static void storeNVListToHashMap(
     String filename, OptionList options, Map<String, String> dstMap) {
   if (options == null || options.getOption() == null || options.getOption().isEmpty()) {
     return;
   }
   List<NameValue> optionNvList = options.getOption();
   for (int i = 0; i < optionNvList.size(); i++) {
     NameValue nv = optionNvList.get(i);
     dstMap.put(nv.getName(), nv.getValue());
   }
 }
Пример #2
0
 public static OptionList getOptionList(String filename, Element parent, String childName)
     throws Exception {
   if (parent == null) {
     return null;
   }
   OptionList result = new OptionList();
   Element optionContainer = DomParseUtils.getSingleElement(filename, parent, childName);
   if (optionContainer == null) {
     return null;
   }
   List<NameValue> outList = result.getOption();
   putNVList(filename, childName, optionContainer, outList);
   return result;
 }