Package cl.alejo.jcsim.window

Examples of cl.alejo.jcsim.window.SetupWindow


public abstract class ConfigurableGate extends Gate {
  protected transient SetupWindow _setupWindow;

  public void config(String[] txtparams, String[] valparams) {
    if (_setupWindow == null) {
      _setupWindow = new SetupWindow(this, "Clock config", txtparams, valparams);
      _setupWindow.pack();
    }

    _setupWindow.show();
View Full Code Here

TOP

Related Classes of cl.alejo.jcsim.window.SetupWindow

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.