- Added clean-tomcat target to build

- Added new features to dialog framework
- Fixed bug in error message in Add Content Dialog
- Fixed typos is sample custom config file

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@3413 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Gavin Cornwell
2006-07-26 12:15:53 +00:00
parent 4ef626f371
commit 1b3901c2f5
18 changed files with 776 additions and 24 deletions

View File

@@ -1,7 +1,10 @@
package org.alfresco.web.bean.dialog;
import java.util.List;
import java.util.Map;
import org.alfresco.web.config.DialogsConfigElement.DialogButtonConfig;
/**
* Interface that defines the contract for a dialog backing bean
*
@@ -30,6 +33,13 @@ public interface IDialogBean
*/
public String finish();
/**
* Returns a list of additional buttons to display in the dialog.
*
* @return List of button configurations, null if there are no buttons
*/
public List<DialogButtonConfig> getAdditionalButtons();
/**
* Returns the label to use for the cancel button
*