Examples of LanguageSettings


Examples of com.aaspring.translation.model.LanguageSettings

    }
  }

  public HSSFWorkbook export(final String languageFileXmlPath,
      final Locale[] locales) throws Exception {
    LanguageSettings ls = (LanguageSettings) JAXBContext.newInstance(
        "com.fit.translation.xlsdoor.model").createUnmarshaller()
        .unmarshal(new File(languageFileXmlPath));

    final Set<String> attributeIdSet = new LinkedHashSet<String>();
    for (LanguageFile lf : ls.getLanguageFiles().getLanguageFile()) {
      for (Attribute attr : lf.getAttribute()) {
        attributeIdSet.add(attr.getId());
      }
    }
    final List<String> attributeIds = new ArrayList<String>(attributeIdSet);
View Full Code Here

Examples of com.aaspring.translation.model.LanguageSettings

          }
        }
      }
    }

    LanguageSettings ls = (LanguageSettings) JAXBContext.newInstance(
        "com.aaspring.translation.model").createUnmarshaller()
        .unmarshal(new File(languageFileXmlPath));
    Importer.importTranslation(ls, localeMapping, fieldKeyLocaleValueMap);

  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.