Package com.cburch.logisim.tools

Examples of com.cburch.logisim.tools.Tool.keyPressed()


    //
    // KeyListener methods
    //
    public void keyPressed(KeyEvent e) {
      Tool tool = proj.getTool();
      if (tool != null) tool.keyPressed(Canvas.this, e);
    }
    public void keyReleased(KeyEvent e) {
      Tool tool = proj.getTool();
      if (tool != null) tool.keyReleased(Canvas.this, e);
    }
View Full Code Here

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.