Package org.wymiwyg.commons.prevamodel

Examples of org.wymiwyg.commons.prevamodel.PrevaGraph


   */
  public Model loadModel(Resource description, File baseDir) {
    String pathString = description.getProperty(PREVALOADER.path).getString();
    File prevaDir = new File(baseDir, pathString);
    try {
      return ModelFactory.createModelForGraph(new PrevaGraph(prevaDir.getAbsolutePath(),
          15));
    } catch (IOException ex) {
      throw new RuntimeException("initializing PrevaModel", ex);
    }
  }
View Full Code Here

TOP

Related Classes of org.wymiwyg.commons.prevamodel.PrevaGraph

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.