Package com.aaspring.translation.model

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


          }
        }
      }
    }

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

  }
View Full Code Here

TOP

Related Classes of com.aaspring.translation.model.LanguageSettings

Copyright © 2018 www.massapicom. 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.