mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
Completion of dialog and wizard frameworks also converted advanced space wizard and create space dialog to the new frameworks.
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2615 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -12,19 +12,26 @@ public interface IDialogBean
|
||||
*/
|
||||
public void init();
|
||||
|
||||
/**
|
||||
* Method handler called when the cancel button of the dialog is pressed
|
||||
*
|
||||
* @return The outcome to return
|
||||
*/
|
||||
public String cancel();
|
||||
|
||||
/**
|
||||
* Method handler called when the finish button of the dialog is pressed
|
||||
*
|
||||
* @return The outcome to return (normally dialog:close)
|
||||
* @return The outcome to return
|
||||
*/
|
||||
public String finish();
|
||||
|
||||
/**
|
||||
* Method handler called when the cancel button of the dialog is pressed
|
||||
* Returns the label to use for the cancel button
|
||||
*
|
||||
* @return The outcome to return (normally dialog:close)
|
||||
* @return The cancel button label
|
||||
*/
|
||||
public String cancel();
|
||||
public String getCancelButtonLabel();
|
||||
|
||||
/**
|
||||
* Returns the label to use for the finish button
|
||||
|
Reference in New Issue
Block a user