Package net.sf.rej.gui

Examples of net.sf.rej.gui.MainWindow


  public void undo() {
    EditorFacade.getInstance().performUndo();
  }

  public void insert() {
    MainWindow main = MainWindow.getInstance();
    Point pt = main.getMousePosition(true);

    int x = (int) pt.getX();
    int y = (int) pt.getY();
    EditorTab.this.insertContextMenu.show(MainWindow.getInstance(), x, y);
  }
View Full Code Here

TOP

Related Classes of net.sf.rej.gui.MainWindow

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.