Package

Source Code of JCSim

/**
*
* jcsim
*
* Created on Jul 17, 2004
*
* This program is distributed under the terms of the GNU General Public License
* The license is included in license.txt
*
* @author: Alejandro Vera
*/

import cl.alejo.jcsim.csim.circuit.Circuit;
import cl.alejo.jcsim.window.Window;

public class JCSim {
  public static void main(String[] args) throws Exception {
    Window window = new Window(Circuit.load("menu.cir"));
    window.init();
    window.pack();
    window.show();
    window.startRepaint();
  }
}
TOP

Related Classes of JCSim

TOP
Copyright © 2018 www.massapi.com. 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.