Package net.sourceforge.ztail.ui.windows

Examples of net.sourceforge.ztail.ui.windows.LocalFileDialogWindow


 
  private TabPanelController() {
  }
 
  public void openLocalFileReq(Shell shell) {
    final LocalFileDialogWindow win = new LocalFileDialogWindow(shell);
    win.setNumberOfLines(Configurer.application.getInt("reader.remote.defaultNrLines"));
    win.setOpenAction(new UXDefaultAction() {
      @Override
      public void doAction() {
        openLocalFileReq(win.getFile().toURI(), win.getNumberOfLines());
        win.close();
      }
    });
   
    win.open();
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.ztail.ui.windows.LocalFileDialogWindow

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.