Package sg.edu.nus.comp.simTL.engine

Examples of sg.edu.nus.comp.simTL.engine.InterpretationResult


      interpreterLog.error(e.getMessage());
      throw e;
    } catch (IOException e) {
      throw new SimTLException("Couldn't save instance",e);
    }
    return new InterpretationResult(instance,modelCorrespondence);
  }
View Full Code Here


  }
 
  @Test
  public void testInterpreter() throws Exception{
    IInterpreter interpreter = SimTLFactory.createInterpreter();
    InterpretationResult ir = interpreter.interprete(templateMockup.getTemplate(),
        URI.createFileURI(new File("output/templateInstance.java").getAbsolutePath()));
    IModel templateInstance = ir.getInstance();
  }
View Full Code Here

TOP

Related Classes of sg.edu.nus.comp.simTL.engine.InterpretationResult

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.