org.cafesip.gwtcomp.client.ui
Interface ServerFileBrowserListener

All Superinterfaces:
java.util.EventListener

public interface ServerFileBrowserListener
extends java.util.EventListener

An interface that must be extended to create your own listeners for ServerFileBrowser events. For details on the events that are supported by the ServerFileBrowser, please refer to the method descriptions below.


Method Summary
 void onCancel(com.google.gwt.user.client.ui.Widget sender)
          The method is called when the user clicks on the Cancel button on the server file browser.
 void onOk(com.google.gwt.user.client.ui.Widget sender, java.lang.String path)
          This method is called when the user clicks on the OK button on the server file browser after selecting (or not selecting) a file.
 

Method Detail

onOk

void onOk(com.google.gwt.user.client.ui.Widget sender,
          java.lang.String path)
This method is called when the user clicks on the OK button on the server file browser after selecting (or not selecting) a file.

Parameters:
sender - the sender of the event
path - the full path name of the selected file/directory.

onCancel

void onCancel(com.google.gwt.user.client.ui.Widget sender)
The method is called when the user clicks on the Cancel button on the server file browser.

Parameters:
sender - the sender of the event.


http://www.cafesip.org