Class WebsaverDialogEvent

java.lang.Object
   |
   +----WebsaverDialogEvent

public class WebsaverDialogEvent
extends Object
This event is created when a user requests to load or save a file from WebsaverDialogLoad or WebsaverDialogSave.


Constructor Index

 o WebsaverDialogEvent(WebsaverConnection)
Create a WebsaverDialogEvent, given its connection and the filename to load or save.
 o WebsaverDialogEvent(WebsaverConnection, String)
 o WebsaverDialogEvent(WebsaverConnection, String, String)
Create a WebsaverDialogEvent, given its connection and the filename to load or save, as well as a password.

Method Index

 o getFilename()
Return the filename to be loaded/saved
 o getPassword()
Return the password for the associated file.
 o getSource()
Return the WebsaverConnection the load/save request took place on.

Constructors

 o WebsaverDialogEvent
 public WebsaverDialogEvent(WebsaverConnection wsConn)
Create a WebsaverDialogEvent, given its connection and the filename to load or save. Note that loading versus saving is unimportant because the event will only be dispatched to the correct method, anyway.

 o WebsaverDialogEvent
 public WebsaverDialogEvent(WebsaverConnection wsConn,
                            String filename)
 o WebsaverDialogEvent
 public WebsaverDialogEvent(WebsaverConnection wsConn,
                            String filename,
                            String password)
Create a WebsaverDialogEvent, given its connection and the filename to load or save, as well as a password.

Methods

 o getSource
 public WebsaverConnection getSource()
Return the WebsaverConnection the load/save request took place on.

 o getFilename
 public String getFilename()
Return the filename to be loaded/saved

 o getPassword
 public String getPassword()
Return the password for the associated file.