Package net.laubenberger.tyr.model

Examples of net.laubenberger.tyr.model.TyrDataImpl


      dirDb.mkdirs();
    }

    // read data for the Tyr application
    final File tda = new File(dirData, model.getUUID() + FileType.DATA.getExtension());
    data = new TyrDataImpl();
    try {
      if (tda.exists()) {
        data = HelperXml.deserialize(tda, TyrDataImpl.class);
      }
    } catch (JAXBException ex) {
View Full Code Here

TOP

Related Classes of net.laubenberger.tyr.model.TyrDataImpl

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.