Package sisc.interpreter

Examples of sisc.interpreter.AppContext


   * @param phoenix  PhoenixController for this SchemeController
   */
  public SchemeController(PhoenixController phoenix)
  {
    // load SISC
    AppContext ctx = new AppContext();
    this.phoenix = phoenix;
    this.window = new SchemeWindow(this);

    // load heap
    try
    {
      ctx.addHeap(AppContext.openHeap(new URL("file://"
        + PhoenixController.getFile("sisc.shp"))));
    } // try
    catch (Exception e)
    {
      e.printStackTrace();
View Full Code Here


    PhoenixController.clipsController.window.updateUI();
    PhoenixController.schemeController.window.outputArea.setText("");
    PhoenixController.schemeController.window.inputArea.setText("");

    // reload the heap
    AppContext ctx = new AppContext();
    try
    {
      ctx.addHeap(AppContext.openHeap(new URL("file://"
        + PhoenixController.getFile("sisc.shp"))));
    } // try
    catch (Exception e)
    {
      e.printStackTrace();
View Full Code Here

TOP

Related Classes of sisc.interpreter.AppContext

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.