Package org.latexlab.docs.client.events

Examples of org.latexlab.docs.client.events.FileSelectionEvent


      public void onClick(ClickEvent event) {
        hide();
        if (selectionHandler != null) {
          ArrayList<DocumentServiceEntry> files = tree.getSelectedEntries();
          if (files.size() > 0) {
            selectionHandler.onSelection(new FileSelectionEvent(files.get(0)));
          }
        }
      }
    });
    cancel = new Button("Cancel", new ClickHandler() {
View Full Code Here

TOP

Related Classes of org.latexlab.docs.client.events.FileSelectionEvent

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.