diff --git a/source/java/org/alfresco/web/api/APIServiceRegistry.java b/source/java/org/alfresco/web/api/APIServiceRegistry.java index c4f10d6692..d11bffcde8 100644 --- a/source/java/org/alfresco/web/api/APIServiceRegistry.java +++ b/source/java/org/alfresco/web/api/APIServiceRegistry.java @@ -51,7 +51,7 @@ public class APIServiceRegistry /** * Construct list of API Services * - * @param context + * @param appContext The app context */ public APIServiceRegistry(ApplicationContext appContext) { @@ -112,9 +112,9 @@ public class APIServiceRegistry /** * Gets an API Service given an HTTP Method and URI * - * @param method - * @param uri - * @return + * @param method The method + * @param uri The URI + * @return The matching service or null if there isn't a match */ public APIService get(APIRequest.HttpMethod method, String uri) { diff --git a/source/java/org/alfresco/web/api/services/KeywordSearch.java b/source/java/org/alfresco/web/api/services/KeywordSearch.java index e89f6d4727..c9aa116b1d 100644 --- a/source/java/org/alfresco/web/api/services/KeywordSearch.java +++ b/source/java/org/alfresco/web/api/services/KeywordSearch.java @@ -175,9 +175,11 @@ public class KeywordSearch extends APIServiceTemplateImpl /** * Execute the search * - * @param searchTerms - * @param startPage - * @return + * @param searchTerms The search terms + * @param startPage The page number to start at + * @param itemsPerPage The number of items to show on a page + * @param locale The current locale + * @return The search result */ private SearchResult search(String searchTerms, int startPage, int itemsPerPage, Locale locale) { diff --git a/source/java/org/alfresco/web/app/AlfrescoNavigationHandler.java b/source/java/org/alfresco/web/app/AlfrescoNavigationHandler.java index d84ce4b860..c2fbbe20fe 100644 --- a/source/java/org/alfresco/web/app/AlfrescoNavigationHandler.java +++ b/source/java/org/alfresco/web/app/AlfrescoNavigationHandler.java @@ -425,8 +425,8 @@ public class AlfrescoNavigationHandler extends NavigationHandler /** * Processes any dispatching that may need to occur * - * @param node The node in the current dispatch context - * @param viewId The current view id + * @param context Faces context + * @param fromAction The from action * @param outcome The outcome */ protected void handleDispatch(FacesContext context, String fromAction, String outcome) diff --git a/source/java/org/alfresco/web/app/Application.java b/source/java/org/alfresco/web/app/Application.java index 6aeb08cf3f..8ae6b56571 100644 --- a/source/java/org/alfresco/web/app/Application.java +++ b/source/java/org/alfresco/web/app/Application.java @@ -237,7 +237,7 @@ public class Application * Retrieves the configured error page for the application * * @param portletContext The portlet context - * @return + * @return The error page */ public static String getErrorPage(PortletContext portletContext) { @@ -271,7 +271,7 @@ public class Application * Retrieves the configured login page for the application * * @param portletContext The portlet context - * @return + * @return The login page */ public static String getLoginPage(PortletContext portletContext) { diff --git a/source/java/org/alfresco/web/app/servlet/FacesHelper.java b/source/java/org/alfresco/web/app/servlet/FacesHelper.java index 749817ff83..2c9da8700a 100644 --- a/source/java/org/alfresco/web/app/servlet/FacesHelper.java +++ b/source/java/org/alfresco/web/app/servlet/FacesHelper.java @@ -183,7 +183,7 @@ public final class FacesHelper * as a default, if this is also not found an AlfrescoRuntimeException is thrown. * * @param context FacesContext - * @param generator The name of the component generator to retrieve + * @param generatorName The name of the component generator to retrieve * @return The component generator instance */ public static IComponentGenerator getComponentGenerator(FacesContext context, String generatorName) diff --git a/source/java/org/alfresco/web/bean/AdvancedSearchBean.java b/source/java/org/alfresco/web/bean/AdvancedSearchBean.java index 682197ec2e..c2f869a021 100644 --- a/source/java/org/alfresco/web/bean/AdvancedSearchBean.java +++ b/source/java/org/alfresco/web/bean/AdvancedSearchBean.java @@ -253,7 +253,7 @@ public class AdvancedSearchBean } /** - * @param lookin The folder to search in or null for all. + * @param lookIn The folder to search in or null for all. */ public void setLookin(String lookIn) { @@ -388,7 +388,7 @@ public class AdvancedSearchBean } /** - * @param createdDateFrom The createdDateFrom to set. + * @param createdDate The createdDateFrom to set. */ public void setCreatedDateFrom(Date createdDate) { @@ -420,7 +420,7 @@ public class AdvancedSearchBean } /** - * @param modifiedDateFrom The modifiedDateFrom to set. + * @param modifiedDate The modifiedDateFrom to set. */ public void setModifiedDateFrom(Date modifiedDate) { @@ -1606,14 +1606,14 @@ public class AdvancedSearchBean protected AdvancedSearchConfigElement searchConfigElement = null; /** Progressive panel UI state */ - private Map panels = new HashMap(5, 1.0f); + private Map panels = new HashMap(5, 1.0f); /** Saved search properties */ private String searchName; private String searchDescription; /** custom property names to values */ - private Map customProperties = new HashMap(5, 1.0f); + private Map customProperties = new HashMap(5, 1.0f); /** lookup of custom property QName string to DataTypeDefinition for the property */ private Map customPropertyLookup = null; diff --git a/source/java/org/alfresco/web/bean/BrowseBean.java b/source/java/org/alfresco/web/bean/BrowseBean.java index 8769b6cf47..a39085abd9 100644 --- a/source/java/org/alfresco/web/bean/BrowseBean.java +++ b/source/java/org/alfresco/web/bean/BrowseBean.java @@ -317,9 +317,9 @@ public class BrowseBean implements IContextListener /** * @param contentRichList The contentRichList to set. */ - public void setContentRichList(UIRichList browseRichList) + public void setContentRichList(UIRichList contentRichList) { - this.contentRichList = browseRichList; + this.contentRichList = contentRichList; if (this.contentRichList != null) { this.contentRichList.setInitialSortColumn( @@ -348,9 +348,9 @@ public class BrowseBean implements IContextListener /** * @param spacesRichList The spacesRichList to set. */ - public void setSpacesRichList(UIRichList detailsRichList) + public void setSpacesRichList(UIRichList spacesRichList) { - this.spacesRichList = detailsRichList; + this.spacesRichList = spacesRichList; if (this.spacesRichList != null) { // set the initial sort column and direction diff --git a/source/java/org/alfresco/web/bean/CategoriesBean.java b/source/java/org/alfresco/web/bean/CategoriesBean.java index 68b720407b..15f7a825f8 100644 --- a/source/java/org/alfresco/web/bean/CategoriesBean.java +++ b/source/java/org/alfresco/web/bean/CategoriesBean.java @@ -216,7 +216,7 @@ public class CategoriesBean implements IContextListener } /** - * @param actionSpace Set the Node to be used for the current category screen action. + * @param node Set the Node to be used for the current category screen action. */ public void setActionCategory(Node node) { diff --git a/source/java/org/alfresco/web/bean/GroupsBean.java b/source/java/org/alfresco/web/bean/GroupsBean.java index c143c1b225..03f59e9fad 100644 --- a/source/java/org/alfresco/web/bean/GroupsBean.java +++ b/source/java/org/alfresco/web/bean/GroupsBean.java @@ -155,7 +155,7 @@ public class GroupsBean implements IContextListener } /** - * @param permissionService The PermissionService to set. + * @param personService The PersonService to set. */ public void setPersonService(PersonService personService) { @@ -277,7 +277,7 @@ public class GroupsBean implements IContextListener } /** - * @param actionSpace Set the Group to be used for the current action screen. + * @param group Set the Group to be used for the current action screen. */ public void setActionGroup(String group) { diff --git a/source/java/org/alfresco/web/bean/UserPreferencesBean.java b/source/java/org/alfresco/web/bean/UserPreferencesBean.java index 1a1728c29f..d0dd145131 100644 --- a/source/java/org/alfresco/web/bean/UserPreferencesBean.java +++ b/source/java/org/alfresco/web/bean/UserPreferencesBean.java @@ -167,7 +167,7 @@ public class UserPreferencesBean * Helper to return the available language items * * @param includeAllLanguages True to include a marker item for "All Languages" - * @return + * @return Array of SelectItem objects */ private static SelectItem[] getLanguageItems(boolean includeAllLanguages) { diff --git a/source/java/org/alfresco/web/bean/UserShortcutsBean.java b/source/java/org/alfresco/web/bean/UserShortcutsBean.java index 0e8e893dd7..cffd6192af 100644 --- a/source/java/org/alfresco/web/bean/UserShortcutsBean.java +++ b/source/java/org/alfresco/web/bean/UserShortcutsBean.java @@ -204,7 +204,7 @@ public class UserShortcutsBean } /** - * @param spaces List of shortcuts Nodes + * @param nodes List of shortcuts Nodes */ public void setShortcuts(List nodes) { diff --git a/source/java/org/alfresco/web/bean/actions/BaseActionWizard.java b/source/java/org/alfresco/web/bean/actions/BaseActionWizard.java index 2222f3a2ec..7dca58f519 100644 --- a/source/java/org/alfresco/web/bean/actions/BaseActionWizard.java +++ b/source/java/org/alfresco/web/bean/actions/BaseActionWizard.java @@ -815,7 +815,7 @@ public abstract class BaseActionWizard extends BaseWizardBean /** * Sets the action service * - * @param actionRegistration the action service + * @param actionService the action service */ public void setActionService(ActionService actionService) { diff --git a/source/java/org/alfresco/web/bean/actions/IHandler.java b/source/java/org/alfresco/web/bean/actions/IHandler.java index 258f18d6cf..a5c7248286 100644 --- a/source/java/org/alfresco/web/bean/actions/IHandler.java +++ b/source/java/org/alfresco/web/bean/actions/IHandler.java @@ -75,7 +75,7 @@ public interface IHandler * properties map. * * @param props The current properties map - * @param repoParams The properties currently in the repository + * @param repoProps The properties currently in the repository */ public void prepareForEdit(Map props, Map repoProps); diff --git a/source/java/org/alfresco/web/bean/content/EditContentPropertiesDialog.java b/source/java/org/alfresco/web/bean/content/EditContentPropertiesDialog.java index 5fe10d0a1d..d5753688ba 100644 --- a/source/java/org/alfresco/web/bean/content/EditContentPropertiesDialog.java +++ b/source/java/org/alfresco/web/bean/content/EditContentPropertiesDialog.java @@ -220,7 +220,7 @@ public class EditContentPropertiesDialog extends BaseDialogBean /** * Formats the error message to display if an error occurs during finish processing * - * @param The exception + * @param exception The exception * @return The formatted message */ @Override diff --git a/source/java/org/alfresco/web/bean/forums/ForumsBean.java b/source/java/org/alfresco/web/bean/forums/ForumsBean.java index 19a37c1d01..4ba07a70f8 100644 --- a/source/java/org/alfresco/web/bean/forums/ForumsBean.java +++ b/source/java/org/alfresco/web/bean/forums/ForumsBean.java @@ -960,26 +960,17 @@ public class ForumsBean implements IContextListener { public static final String VIEWMODEID = "bubble"; - /** - * @see org.alfresco.web.ui.common.renderer.data.IRichListRenderer#getViewModeID() - */ public String getViewModeID() { return VIEWMODEID; } - /** - * @see org.alfresco.web.ui.common.renderer.data.IRichListRenderer#renderListBefore(javax.faces.context.FacesContext, org.alfresco.web.ui.common.component.data.UIColumn[]) - */ public void renderListBefore(FacesContext context, UIRichList richList, UIColumn[] columns) throws IOException { // nothing to do } - /** - * @see org.alfresco.web.ui.common.renderer.data.IRichListRenderer#renderListRow(javax.faces.context.FacesContext, org.alfresco.web.ui.common.component.data.UIColumn[], java.lang.Object) - */ public void renderListRow(FacesContext context, UIRichList richList, UIColumn[] columns, Object row) throws IOException { @@ -1028,9 +1019,6 @@ public class ForumsBean implements IContextListener out.write("
"); } - /** - * @see org.alfresco.web.ui.common.renderer.data.IRichListRenderer#renderListAfter(javax.faces.context.FacesContext, org.alfresco.web.ui.common.component.data.UIColumn[]) - */ public void renderListAfter(FacesContext context, UIRichList richList, UIColumn[] columns) throws IOException { diff --git a/source/java/org/alfresco/web/bean/repository/MapNode.java b/source/java/org/alfresco/web/bean/repository/MapNode.java index 6cbdba6d18..668f55e095 100644 --- a/source/java/org/alfresco/web/bean/repository/MapNode.java +++ b/source/java/org/alfresco/web/bean/repository/MapNode.java @@ -146,7 +146,7 @@ public class MapNode extends Node implements Map } /** - * @see java.util.Map#put(K, V) + * @see java.util.Map#put(java.lang.Object, java.lang.Object) */ public Object put(String key, Object value) { diff --git a/source/java/org/alfresco/web/bean/repository/TransientMapNode.java b/source/java/org/alfresco/web/bean/repository/TransientMapNode.java index bf89b29dee..ba0f0e7a0d 100644 --- a/source/java/org/alfresco/web/bean/repository/TransientMapNode.java +++ b/source/java/org/alfresco/web/bean/repository/TransientMapNode.java @@ -130,7 +130,7 @@ public class TransientMapNode extends TransientNode implements Map getRules() { @@ -427,7 +427,9 @@ public class RulesBean implements IContextListener * Constructs a RuleWrapper object * * @param rule The rule we are wrapping - * @param ruleNode The node the rules belong to + * @param isLocal Whether the rule is defined locally + * @param createdDate Date the rule was created + * @param modifiedDate The date the rule was last modified */ public WrappedRule(Rule rule, boolean isLocal, Date createdDate, Date modifiedDate) { diff --git a/source/java/org/alfresco/web/bean/spaces/CreateSpaceWizard.java b/source/java/org/alfresco/web/bean/spaces/CreateSpaceWizard.java index 600663d22a..f43c225aed 100644 --- a/source/java/org/alfresco/web/bean/spaces/CreateSpaceWizard.java +++ b/source/java/org/alfresco/web/bean/spaces/CreateSpaceWizard.java @@ -729,7 +729,7 @@ public class CreateSpaceWizard extends BaseWizardBean /** * Formats the error message to display if an error occurs during finish processing * - * @param The exception + * @param exception The exception * @return The formatted message */ @Override diff --git a/source/java/org/alfresco/web/bean/users/EmailSpaceUsersDialog.java b/source/java/org/alfresco/web/bean/users/EmailSpaceUsersDialog.java index cd32ec5aad..38b2b7bdea 100644 --- a/source/java/org/alfresco/web/bean/users/EmailSpaceUsersDialog.java +++ b/source/java/org/alfresco/web/bean/users/EmailSpaceUsersDialog.java @@ -226,7 +226,7 @@ public class EmailSpaceUsersDialog extends BaseDialogBean implements IContextLis } /** - * @param permissionService The PersonService to set + * @param personService The PersonService to set */ public void setPersonService(PersonService personService) { diff --git a/source/java/org/alfresco/web/bean/wcm/AVMNode.java b/source/java/org/alfresco/web/bean/wcm/AVMNode.java index 492a31a53d..7057530dd1 100644 --- a/source/java/org/alfresco/web/bean/wcm/AVMNode.java +++ b/source/java/org/alfresco/web/bean/wcm/AVMNode.java @@ -286,7 +286,7 @@ public class AVMNode extends Node implements Map } /** - * @see java.util.Map#put(K, V) + * @see java.util.Map#put(java.lang.Object, java.lang.Object) */ public Object put(String key, Object value) { diff --git a/source/java/org/alfresco/web/bean/wcm/CreateFormWizard.java b/source/java/org/alfresco/web/bean/wcm/CreateFormWizard.java index 88a34b8a15..baf8e02e3a 100644 --- a/source/java/org/alfresco/web/bean/wcm/CreateFormWizard.java +++ b/source/java/org/alfresco/web/bean/wcm/CreateFormWizard.java @@ -498,7 +498,7 @@ public class CreateFormWizard } /** - * @param mimetype The mimetype to set. + * @param mimetypeForRendition The mimetype to set. */ public void setMimetypeForRendition(final String mimetypeForRendition) { diff --git a/source/java/org/alfresco/web/bean/wcm/CreateWebContentWizard.java b/source/java/org/alfresco/web/bean/wcm/CreateWebContentWizard.java index 95a45343be..db497d2d7a 100644 --- a/source/java/org/alfresco/web/bean/wcm/CreateWebContentWizard.java +++ b/source/java/org/alfresco/web/bean/wcm/CreateWebContentWizard.java @@ -655,7 +655,7 @@ public class CreateWebContentWizard extends BaseContentWizard } /** - * @param form Sets the currently selected form + * @param formName Sets the currently selected form */ public void setFormName(final String formName) { diff --git a/source/java/org/alfresco/web/bean/wcm/CreateWebsiteWizard.java b/source/java/org/alfresco/web/bean/wcm/CreateWebsiteWizard.java index 545c8e7f2a..1158793340 100644 --- a/source/java/org/alfresco/web/bean/wcm/CreateWebsiteWizard.java +++ b/source/java/org/alfresco/web/bean/wcm/CreateWebsiteWizard.java @@ -415,7 +415,7 @@ public class CreateWebsiteWizard extends BaseWizardBean } /** - * @param DNS name + * @param dnsName DNS name */ public void setDnsName(String dnsName) { diff --git a/source/java/org/alfresco/web/bean/wcm/EditFilePropertiesDialog.java b/source/java/org/alfresco/web/bean/wcm/EditFilePropertiesDialog.java index 5db2f04385..187f43193a 100644 --- a/source/java/org/alfresco/web/bean/wcm/EditFilePropertiesDialog.java +++ b/source/java/org/alfresco/web/bean/wcm/EditFilePropertiesDialog.java @@ -185,7 +185,7 @@ public class EditFilePropertiesDialog extends EditContentPropertiesDialog /** * Formats the error message to display if an error occurs during finish processing * - * @param The exception + * @param exception The exception * @return The formatted message */ @Override diff --git a/source/java/org/alfresco/web/bean/wcm/SandboxFactory.java b/source/java/org/alfresco/web/bean/wcm/SandboxFactory.java index e45002432d..b1eb3b2ff8 100644 --- a/source/java/org/alfresco/web/bean/wcm/SandboxFactory.java +++ b/source/java/org/alfresco/web/bean/wcm/SandboxFactory.java @@ -315,10 +315,8 @@ public final class SandboxFactory * DNS: .dns. = * Website Name: .website.name = website name * - * @param name The store name to create the sandbox for - * @param managers The list of authorities who have ContentManager role in the website - * @param username Username of the user to create the sandbox for - * @param role Role permission for the user + * @param storeId The id of the store to create a sandbox for + * @return Information about the sandbox */ public static SandboxInfo createWorkflowSandbox(final String storeId) { diff --git a/source/java/org/alfresco/web/bean/wizard/AbstractWizardBean.java b/source/java/org/alfresco/web/bean/wizard/AbstractWizardBean.java index 68ddc15509..73b50af2bc 100644 --- a/source/java/org/alfresco/web/bean/wizard/AbstractWizardBean.java +++ b/source/java/org/alfresco/web/bean/wizard/AbstractWizardBean.java @@ -160,7 +160,7 @@ public abstract class AbstractWizardBean /** * Deals with the next button being pressed * - * @return + * @return The outcome for the next step */ public String next() { @@ -182,7 +182,7 @@ public abstract class AbstractWizardBean /** * Deals with the back button being pressed * - * @return + * @return The outcome for the previous step */ public String back() { diff --git a/source/java/org/alfresco/web/bean/wizard/InviteUsersWizard.java b/source/java/org/alfresco/web/bean/wizard/InviteUsersWizard.java index c9eb96bc48..0d71e6499c 100644 --- a/source/java/org/alfresco/web/bean/wizard/InviteUsersWizard.java +++ b/source/java/org/alfresco/web/bean/wizard/InviteUsersWizard.java @@ -141,7 +141,7 @@ public abstract class InviteUsersWizard extends BaseWizardBean } /** - * @param permissionService The PermissionService to set. + * @param personService The PersonService to set. */ public void setPersonService(PersonService personService) { diff --git a/source/java/org/alfresco/web/bean/wizard/WizardManager.java b/source/java/org/alfresco/web/bean/wizard/WizardManager.java index 051da620b7..00cf595fba 100644 --- a/source/java/org/alfresco/web/bean/wizard/WizardManager.java +++ b/source/java/org/alfresco/web/bean/wizard/WizardManager.java @@ -471,8 +471,6 @@ public final class WizardManager /** * Method handler called when the next button of the wizard is pressed - * - * @return The outcome */ public void next() { @@ -492,8 +490,6 @@ public final class WizardManager /** * Method handler called when the back button of the wizard is pressed - * - * @return The outcome */ public void back() { diff --git a/source/java/org/alfresco/web/bean/workflow/ReassignTaskDialog.java b/source/java/org/alfresco/web/bean/workflow/ReassignTaskDialog.java index dcd1c5ac16..f876ae45e3 100644 --- a/source/java/org/alfresco/web/bean/workflow/ReassignTaskDialog.java +++ b/source/java/org/alfresco/web/bean/workflow/ReassignTaskDialog.java @@ -215,7 +215,7 @@ public class ReassignTaskDialog extends BaseDialogBean } /** - * @param permissionService The PermissionService to set. + * @param personService The PersonService to set. */ public void setPersonService(PersonService personService) { diff --git a/source/java/org/alfresco/web/bean/workflow/ReassignWorkItemDialog.java b/source/java/org/alfresco/web/bean/workflow/ReassignWorkItemDialog.java index 372916fe12..eccdfdf65d 100644 --- a/source/java/org/alfresco/web/bean/workflow/ReassignWorkItemDialog.java +++ b/source/java/org/alfresco/web/bean/workflow/ReassignWorkItemDialog.java @@ -214,7 +214,7 @@ public class ReassignWorkItemDialog extends BaseDialogBean } /** - * @param permissionService The PermissionService to set. + * @param personService The PersonService to set. */ public void setPersonService(PersonService personService) { diff --git a/source/java/org/alfresco/web/bean/workflow/StartWorkflowWizard.java b/source/java/org/alfresco/web/bean/workflow/StartWorkflowWizard.java index f153318ab7..530497b770 100644 --- a/source/java/org/alfresco/web/bean/workflow/StartWorkflowWizard.java +++ b/source/java/org/alfresco/web/bean/workflow/StartWorkflowWizard.java @@ -507,7 +507,8 @@ public class StartWorkflowWizard extends BaseWizardBean /** * Determines whether there are any workflows to start - * @return + * + * @return true if there are startable workflows */ public boolean getHasStartableWorkflows() { diff --git a/source/java/org/alfresco/web/bean/workflow/WorkflowConsoleBean.java b/source/java/org/alfresco/web/bean/workflow/WorkflowConsoleBean.java index 329c89e02d..9d2a9bce89 100644 --- a/source/java/org/alfresco/web/bean/workflow/WorkflowConsoleBean.java +++ b/source/java/org/alfresco/web/bean/workflow/WorkflowConsoleBean.java @@ -44,7 +44,7 @@ public class WorkflowConsoleBean /** - * @param nodeService node service + * @param workflowInterpreter workflow interpreter */ public void setWorkflowInterpreter(WorkflowInterpreter workflowInterpreter) { @@ -86,9 +86,9 @@ public class WorkflowConsoleBean } /** - * Set the current query + * Set the current command * - * @param query query statement + * @param command command */ public void setCommand(String command) { @@ -106,9 +106,9 @@ public class WorkflowConsoleBean } /** - * Set the current query + * Set the submitted command * - * @param query query statement + * @param submittedCommand The submitted command */ public void setSubmittedCommand(String submittedCommand) { @@ -126,9 +126,9 @@ public class WorkflowConsoleBean } /** - * Set the current query + * Set the duration * - * @param query query statement + * @param duration The duration */ public void setDuration(long duration) { diff --git a/source/java/org/alfresco/web/config/ClientConfigElement.java b/source/java/org/alfresco/web/config/ClientConfigElement.java index 85ebd592a3..0b98df961e 100644 --- a/source/java/org/alfresco/web/config/ClientConfigElement.java +++ b/source/java/org/alfresco/web/config/ClientConfigElement.java @@ -390,7 +390,7 @@ public class ClientConfigElement extends ConfigElementAdapter /** * If positive, this will limit the size of the result set from the search. * - * @return + * @return The maximum number of results to show */ public int getSearchMaxResults() { diff --git a/source/java/org/alfresco/web/config/OpenSearchConfigElement.java b/source/java/org/alfresco/web/config/OpenSearchConfigElement.java index 908d881ff5..f1c3b20ddc 100644 --- a/source/java/org/alfresco/web/config/OpenSearchConfigElement.java +++ b/source/java/org/alfresco/web/config/OpenSearchConfigElement.java @@ -118,7 +118,7 @@ public class OpenSearchConfigElement extends ConfigElementAdapter /** * Gets the proxy configuration * - * @return + * @return The proxy configuration */ public ProxyConfig getProxy() { diff --git a/source/java/org/alfresco/web/forms/Form.java b/source/java/org/alfresco/web/forms/Form.java index 8a6d1b989e..2d2c438b1a 100644 --- a/source/java/org/alfresco/web/forms/Form.java +++ b/source/java/org/alfresco/web/forms/Form.java @@ -76,10 +76,10 @@ public interface Form * provides the output path for the form instance data based on the * configured output path pattern. * - * @param parentAVMPath the parent avm path - * @param webappname the current webapp name - * @param formInstanceDataFileName the file name provided by the user. * @param formInstanceData the parsed xml content + * @param formInstanceDataFileName the file name provided by the user. + * @param parentAVMPath the parent avm path + * @param webappName the current webapp name * * @return the path to use for writing the form instance data. */ diff --git a/source/java/org/alfresco/web/forms/FormProcessor.java b/source/java/org/alfresco/web/forms/FormProcessor.java index 4d09e8d90f..38528bcc5b 100644 --- a/source/java/org/alfresco/web/forms/FormProcessor.java +++ b/source/java/org/alfresco/web/forms/FormProcessor.java @@ -105,7 +105,6 @@ public interface FormProcessor * Processes a user interface for inputing data into a form. * * @param session the session to use. - * @param form the form to generate for * @param out the writer to write the output to. */ public void process(final Session session, diff --git a/source/java/org/alfresco/web/forms/RenderingEngine.java b/source/java/org/alfresco/web/forms/RenderingEngine.java index e67b1f93ed..6fb8bb4df1 100644 --- a/source/java/org/alfresco/web/forms/RenderingEngine.java +++ b/source/java/org/alfresco/web/forms/RenderingEngine.java @@ -95,10 +95,9 @@ public interface RenderingEngine /** * Renders the xml data in to a presentation format. * - * @param formInstanceData the xml content to serialize. + * @param model The model * @param ret the rendering engine template - * @param form the form that collected the xml content. - * @param rendition the rendition to serialize to. + * @param out The output stream to write to */ public void render(final Map model, final RenderingEngineTemplate ret, diff --git a/source/java/org/alfresco/web/forms/XSLTRenderingEngine.java b/source/java/org/alfresco/web/forms/XSLTRenderingEngine.java index e6b341993b..3e44300870 100644 --- a/source/java/org/alfresco/web/forms/XSLTRenderingEngine.java +++ b/source/java/org/alfresco/web/forms/XSLTRenderingEngine.java @@ -328,7 +328,7 @@ public class XSLTRenderingEngine * Adds the specified parameters to the xsl template as variables within the * alfresco namespace. * - * @param parameters the variables to place within the xsl template + * @param model the variables to place within the xsl template * @param xslTemplate the xsl template */ protected void addParameters(final Map model, diff --git a/source/java/org/alfresco/web/forms/xforms/Schema2XForms.java b/source/java/org/alfresco/web/forms/xforms/Schema2XForms.java index 228487cfb7..64eb28bdc1 100644 --- a/source/java/org/alfresco/web/forms/xforms/Schema2XForms.java +++ b/source/java/org/alfresco/web/forms/xforms/Schema2XForms.java @@ -124,7 +124,10 @@ public class Schema2XForms /** * Generate the XForm based on a user supplied XML Schema. * - * @param inputURI The document source for the XML Schema. + * @param instanceDocument The document source for the XML Schema. + * @param schemaDocument Schema document + * @param rootElementName Name of the root element + * @param resourceBundle Strings to use * @return The Document containing the XForm. * @throws org.chiba.tools.schemabuilder.FormBuilderException * If an error occurs building the XForm. @@ -1964,7 +1967,8 @@ public class Schema2XForms /** * used to get the type name that will be used in the XForms document * - * @param context the element which will serve as context for namespaces + * @param xformsDocument + * @param schema * @param controlType the type from which we want the name * @return the complete type name (with namespace prefix) of the type in the XForms doc */ @@ -2495,11 +2499,13 @@ public class Schema2XForms * * @param xformsDocument The XForm document. * @param listType The XML Schema list type for which the form control is to be created. + * @param owner * @param caption The caption for the form control. The caller The purpose of providing the caption * is to permit the implementation to add a [Select1 .... ] message that involves the caption. * @param bindElement The bind element for this control. The purpose of providing the bind element * is to permit the implementation to add a isValid attribute to the bind element that prevents * the [Select1 .... ] item from being selected. + * @param resourceBundle * @return The element for the form control. */ public Element createControlForListType(final Document xformsDocument, @@ -2574,7 +2580,9 @@ public class Schema2XForms * annotation/documentation elements and/or extracting the same information from the * element/attribute's type annotation/documentation. * - * @param schemaNode The string value to be reformatted for use as a caption. + * @param xformsDocument + * @param node + * @param resourceBundle * @return The xforms:hint element. If a null value is returned a hint is not added. */ public Element createHint(final Document xformsDocument, @@ -2623,9 +2631,10 @@ public class Schema2XForms * the form. * * @param bindElement The bindElement being processed. - * @param controlType XML Schema type of the element/attribute this bind is for. - * @param minOccurs The minimum number of occurences for this element/attribute. - * @param maxOccurs The maximum number of occurences for this element/attribute. + * @param schema XML Schema type of the element/attribute this bind is for. + * @param controlType + * @param owner + * @param o * @return The bind Element to use in the XForm - bindElement or a replacement. */ public Element startBindElement(final Element bindElement, @@ -2730,7 +2739,7 @@ public class Schema2XForms * * @param element * @param xformsDocument - * @return + * @return The element name */ private String getElementName(final XSElementDeclaration element, final Document xformsDocument) diff --git a/source/java/org/alfresco/web/forms/xforms/XFormsBean.java b/source/java/org/alfresco/web/forms/xforms/XFormsBean.java index 553520fd59..73a59294f8 100644 --- a/source/java/org/alfresco/web/forms/xforms/XFormsBean.java +++ b/source/java/org/alfresco/web/forms/xforms/XFormsBean.java @@ -313,10 +313,6 @@ public class XFormsBean /** * sets the value of a control in the processor. - * - * @param id the id of the control in the host document - * @param value the new value - * @return the list of events that may result through this action */ public synchronized void setXFormsValue() throws XFormsException, IOException @@ -344,10 +340,6 @@ public class XFormsBean /** * sets the value of a control in the processor. - * - * @param id the id of the control in the host document - * @param value the new value - * @return the list of events that may result through this action */ public void setRepeatIndeces() throws XFormsException, IOException @@ -370,8 +362,6 @@ public class XFormsBean /** * fires an action associated with a trigger. - * - * @param id the id of the control in the host document */ public synchronized void fireAction() throws XFormsException, IOException diff --git a/source/java/org/alfresco/web/ui/common/component/UIBreadcrumb.java b/source/java/org/alfresco/web/ui/common/component/UIBreadcrumb.java index eef039ff14..1b7a2a6ac5 100644 --- a/source/java/org/alfresco/web/ui/common/component/UIBreadcrumb.java +++ b/source/java/org/alfresco/web/ui/common/component/UIBreadcrumb.java @@ -105,8 +105,6 @@ public class UIBreadcrumb extends UICommand /** * Set the selected path index. This modifies the current path value. - * - * @return last selected path index */ public void setSelectedPathIndex(int index) { diff --git a/source/java/org/alfresco/web/ui/common/renderer/data/RichListRenderer.java b/source/java/org/alfresco/web/ui/common/renderer/data/RichListRenderer.java index f2bd0365a7..b263a08140 100644 --- a/source/java/org/alfresco/web/ui/common/renderer/data/RichListRenderer.java +++ b/source/java/org/alfresco/web/ui/common/renderer/data/RichListRenderer.java @@ -173,18 +173,11 @@ public class RichListRenderer extends BaseRenderer { public static final String VIEWMODEID = "details"; - /** - * @see org.alfresco.web.ui.common.renderer.data.IRichListRenderer#getViewModeID() - */ public String getViewModeID() { return VIEWMODEID; } - /** - * @see org.alfresco.web.ui.common.renderer.data.IRichListRenderer#renderListBefore(javax.faces.context.FacesContext, - * org.alfresco.web.ui.common.component.data.UIColumn[]) - */ public void renderListBefore(FacesContext context, UIRichList richList, UIColumn[] columns) throws IOException { @@ -228,10 +221,6 @@ public class RichListRenderer extends BaseRenderer this.rowIndex = 0; } - /** - * @see org.alfresco.web.ui.common.renderer.data.IRichListRenderer#renderListRow(javax.faces.context.FacesContext, - * org.alfresco.web.ui.common.component.data.UIColumn[], java.lang.Object) - */ public void renderListRow(FacesContext context, UIRichList richList, UIColumn[] columns, Object row) throws IOException { @@ -311,10 +300,6 @@ public class RichListRenderer extends BaseRenderer out.write(""); } - /** - * @see org.alfresco.web.ui.common.renderer.data.IRichListRenderer#renderListAfter(javax.faces.context.FacesContext, - * org.alfresco.web.ui.common.component.data.UIColumn[]) - */ public void renderListAfter(FacesContext context, UIRichList richList, UIColumn[] columns) throws IOException { @@ -352,28 +337,17 @@ public class RichListRenderer extends BaseRenderer public static final String VIEWMODEID = "list"; - /** - * @see org.alfresco.web.ui.common.renderer.data.IRichListRenderer#getViewModeID() - */ public String getViewModeID() { return VIEWMODEID; } - /** - * @see org.alfresco.web.ui.common.renderer.data.IRichListRenderer#renderListBefore(javax.faces.context.FacesContext, - * org.alfresco.web.ui.common.component.data.UIColumn[]) - */ public void renderListBefore(FacesContext context, UIRichList richList, UIColumn[] columns) throws IOException { this.rowIndex = 0; } - /** - * @see org.alfresco.web.ui.common.renderer.data.IRichListRenderer#renderListRow(javax.faces.context.FacesContext, - * org.alfresco.web.ui.common.component.data.UIColumn[], java.lang.Object) - */ public void renderListRow(FacesContext context, UIRichList richList, UIColumn[] columns, Object row) throws IOException { ResponseWriter out = context.getResponseWriter(); @@ -512,9 +486,6 @@ public class RichListRenderer extends BaseRenderer this.rowIndex++; } - /** - * @see org.alfresco.web.ui.common.renderer.data.IRichListRenderer#renderListAfter(javax.faces.context.FacesContext, org.alfresco.web.ui.common.component.data.UIColumn[]) - */ public void renderListAfter(FacesContext context, UIRichList richList, UIColumn[] columns) throws IOException { @@ -563,17 +534,11 @@ public class RichListRenderer extends BaseRenderer public static final String VIEWMODEID = "icons"; - /** - * @see org.alfresco.web.ui.common.renderer.data.IRichListRenderer#getViewModeID() - */ public String getViewModeID() { return VIEWMODEID; } - /** - * @see org.alfresco.web.ui.common.renderer.data.IRichListRenderer#renderListBefore(javax.faces.context.FacesContext, org.alfresco.web.ui.common.component.data.UIColumn[]) - */ public void renderListBefore(FacesContext context, UIRichList richList, UIColumn[] columns) throws IOException { @@ -581,9 +546,6 @@ public class RichListRenderer extends BaseRenderer this.rowIndex = 0; } - /** - * @see org.alfresco.web.ui.common.renderer.data.IRichListRenderer#renderListRow(javax.faces.context.FacesContext, org.alfresco.web.ui.common.component.data.UIColumn[], java.lang.Object) - */ public void renderListRow(FacesContext context, UIRichList richList, UIColumn[] columns, Object row) throws IOException { @@ -689,9 +651,6 @@ public class RichListRenderer extends BaseRenderer this.rowIndex++; } - /** - * @see org.alfresco.web.ui.common.renderer.data.IRichListRenderer#renderListAfter(javax.faces.context.FacesContext, org.alfresco.web.ui.common.component.data.UIColumn[]) - */ public void renderListAfter(FacesContext context, UIRichList richList, UIColumn[] columns) throws IOException { diff --git a/source/java/org/alfresco/web/ui/common/tag/GenericPickerTag.java b/source/java/org/alfresco/web/ui/common/tag/GenericPickerTag.java index 8b1c68a518..144ea5a7c1 100644 --- a/source/java/org/alfresco/web/ui/common/tag/GenericPickerTag.java +++ b/source/java/org/alfresco/web/ui/common/tag/GenericPickerTag.java @@ -218,7 +218,7 @@ public class GenericPickerTag extends BaseComponentTag /** * Set the multiSelect * - * @param mutliSelect the multiSelect + * @param multiSelect the multiSelect */ public void setMultiSelect(String multiSelect) { diff --git a/source/java/org/alfresco/web/ui/common/tag/PanelTag.java b/source/java/org/alfresco/web/ui/common/tag/PanelTag.java index f01facb941..1ca3dee8fb 100644 --- a/source/java/org/alfresco/web/ui/common/tag/PanelTag.java +++ b/source/java/org/alfresco/web/ui/common/tag/PanelTag.java @@ -217,7 +217,7 @@ public class PanelTag extends HtmlComponentTag /** * Set the facetsId * - * @param facets the facetsId + * @param facetsId the facetsId */ public void setFacetsId(String facetsId) { diff --git a/source/java/org/alfresco/web/ui/repo/component/AbstractItemSelector.java b/source/java/org/alfresco/web/ui/repo/component/AbstractItemSelector.java index 326eaefa40..0947fe4376 100644 --- a/source/java/org/alfresco/web/ui/repo/component/AbstractItemSelector.java +++ b/source/java/org/alfresco/web/ui/repo/component/AbstractItemSelector.java @@ -724,7 +724,10 @@ public abstract class AbstractItemSelector extends UIInput * Render a node descendant as a clickable link * * @param context FacesContext - * @param childRef The ChildAssocRef of the child to render an HTML link for + * @param id The id + * @param name The name + * @param prefix The prefix + * @param buf String buffer * * @return HTML for a descendant link */ diff --git a/source/java/org/alfresco/web/ui/repo/component/UICategorySelector.java b/source/java/org/alfresco/web/ui/repo/component/UICategorySelector.java index d140697131..ee8d44c024 100644 --- a/source/java/org/alfresco/web/ui/repo/component/UICategorySelector.java +++ b/source/java/org/alfresco/web/ui/repo/component/UICategorySelector.java @@ -85,11 +85,6 @@ public class UICategorySelector extends AbstractItemSelector return service; } - /** - * Returns the parent id of the current category, or null if the parent has the category root type - * - * @see org.alfresco.web.ui.repo.component.AbstractItemSelector#getParentNodeId(javax.faces.context.FacesContext) - */ public String getParentNodeId(FacesContext context) { String id = null; @@ -111,11 +106,6 @@ public class UICategorySelector extends AbstractItemSelector return id; } - /** - * Returns the child categories of the current navigation node - * - * @see org.alfresco.web.ui.repo.component.AbstractItemSelector#getChildrenForNode(javax.faces.context.FacesContext) - */ public Collection getChildrenForNode(FacesContext context) { NodeRef nodeRef = new NodeRef(Repository.getStoreRef(), this.navigationId); @@ -131,11 +121,6 @@ public class UICategorySelector extends AbstractItemSelector return refs; } - /** - * Returns the root categories - * - * @see org.alfresco.web.ui.repo.component.AbstractItemSelector#getRootChildren(javax.faces.context.FacesContext) - */ public Collection getRootChildren(FacesContext context) { Collection childRefs = getCategoryService(context).getCategories( @@ -149,9 +134,6 @@ public class UICategorySelector extends AbstractItemSelector return refs; } - /** - * @see org.alfresco.web.ui.repo.component.AbstractItemSelector#getItemIcon() - */ public String getItemIcon(FacesContext context, NodeRef ref) { return WebResources.IMAGE_CATEGORY; diff --git a/source/java/org/alfresco/web/ui/repo/component/UIMultiValueEditor.java b/source/java/org/alfresco/web/ui/repo/component/UIMultiValueEditor.java index 73d734736b..c2793a0c47 100644 --- a/source/java/org/alfresco/web/ui/repo/component/UIMultiValueEditor.java +++ b/source/java/org/alfresco/web/ui/repo/component/UIMultiValueEditor.java @@ -237,7 +237,7 @@ public class UIMultiValueEditor extends UIInput /** * Sets the select an item message to display in the UI * - * @param selectedItemsMsg The message + * @param selectItemMsg The message */ public void setSelectItemMsg(String selectItemMsg) { diff --git a/source/java/org/alfresco/web/ui/repo/component/UINodeDescendants.java b/source/java/org/alfresco/web/ui/repo/component/UINodeDescendants.java index 0bd4357b60..09918b2db0 100644 --- a/source/java/org/alfresco/web/ui/repo/component/UINodeDescendants.java +++ b/source/java/org/alfresco/web/ui/repo/component/UINodeDescendants.java @@ -145,7 +145,7 @@ public class UINodeDescendants extends UICommand } /** - * @param showLink True to show ellipses "..." if more descendants than maxChildren are found + * @param showEllipses True to show ellipses "..." if more descendants than maxChildren are found */ public void setShowEllipses(boolean showEllipses) { diff --git a/source/java/org/alfresco/web/ui/repo/component/UISpaceSelector.java b/source/java/org/alfresco/web/ui/repo/component/UISpaceSelector.java index c8599b637b..ff615cbe67 100644 --- a/source/java/org/alfresco/web/ui/repo/component/UISpaceSelector.java +++ b/source/java/org/alfresco/web/ui/repo/component/UISpaceSelector.java @@ -52,29 +52,16 @@ public class UISpaceSelector extends AbstractItemSelector // ------------------------------------------------------------------------------ // Component Impl - /** - * @see javax.faces.component.UIComponent#getFamily() - */ public String getFamily() { return "org.alfresco.faces.SpaceSelector"; } - /** - * - * @see org.alfresco.web.ui.repo.component.AbstractItemSelector#getDefaultLabel() - */ public String getDefaultLabel() { return Application.getMessage(FacesContext.getCurrentInstance(), "select_space_prompt"); } - /** - * Returns the parent id of the current space or null if the parent space is an immediate child - * of the repository root node or the parent is inaccessable due to permissions. - * - * @see org.alfresco.web.ui.repo.component.AbstractItemSelector#getParentNodeId(javax.faces.context.FacesContext) - */ public String getParentNodeId(FacesContext context) { String id = null; @@ -96,11 +83,6 @@ public class UISpaceSelector extends AbstractItemSelector return id; } - /** - * Returns the child spaces of the current space - * - * @see org.alfresco.web.ui.repo.component.AbstractItemSelector#getChildrenForNode(javax.faces.context.FacesContext) - */ public Collection getChildrenForNode(FacesContext context) { NodeRef nodeRef = new NodeRef(Repository.getStoreRef(), this.navigationId); @@ -123,11 +105,6 @@ public class UISpaceSelector extends AbstractItemSelector return spaceKids; } - /** - * Returns the children of the initial root space - * - * @see org.alfresco.web.ui.repo.component.AbstractItemSelector#getRootChildren(javax.faces.context.FacesContext) - */ public Collection getRootChildren(FacesContext context) { NodeRef rootRef = new NodeRef(Repository.getStoreRef(), Application.getCompanyRootId()); @@ -147,9 +124,6 @@ public class UISpaceSelector extends AbstractItemSelector return roots; } - /** - * @see org.alfresco.web.ui.repo.component.AbstractItemSelector#getItemIcon() - */ public String getItemIcon(FacesContext context, NodeRef ref) { String icon = (String)getNodeService(context).getProperty(ref, ApplicationModel.PROP_ICON); diff --git a/source/java/org/alfresco/web/ui/repo/component/UITree.java b/source/java/org/alfresco/web/ui/repo/component/UITree.java index b44fe15ae2..649c2d8b96 100644 --- a/source/java/org/alfresco/web/ui/repo/component/UITree.java +++ b/source/java/org/alfresco/web/ui/repo/component/UITree.java @@ -169,7 +169,7 @@ public class UITree extends UIComponentBase /** * Sets the name of the Javascript function to use for the expanded event * - * @param nodeCollapsedCallback The Javascript function to use for the expanded event + * @param nodeExpandedCallback The Javascript function to use for the expanded event */ public void setNodeExpandedCallback(String nodeExpandedCallback) { @@ -195,7 +195,7 @@ public class UITree extends UIComponentBase /** * Sets the name of the Javascript function to use for the node selected event * - * @param nodeCollapsedCallback The Javascript function to use for the node selected event + * @param nodeSelectedCallback The Javascript function to use for the node selected event */ public void setNodeSelectedCallback(String nodeSelectedCallback) { diff --git a/source/java/org/alfresco/web/ui/repo/component/property/BaseAssociationEditor.java b/source/java/org/alfresco/web/ui/repo/component/property/BaseAssociationEditor.java index f9f1c4a0fd..6294e5ad14 100644 --- a/source/java/org/alfresco/web/ui/repo/component/property/BaseAssociationEditor.java +++ b/source/java/org/alfresco/web/ui/repo/component/property/BaseAssociationEditor.java @@ -606,7 +606,7 @@ public abstract class BaseAssociationEditor extends UIInput /** * Sets the select an item message to display in the UI * - * @param selectedItemMsg The message + * @param selectItemMsg The message */ public void setSelectItemMsg(String selectItemMsg) { @@ -638,7 +638,7 @@ public abstract class BaseAssociationEditor extends UIInput /** * Sets the select items message to display in the UI * - * @param selectedItemsMsg The message + * @param selectItemsMsg The message */ public void setSelectItemsMsg(String selectItemsMsg) { @@ -687,7 +687,7 @@ public abstract class BaseAssociationEditor extends UIInput * Updates the component and node state to reflect an association being added * * @param node The node we are dealing with - * @param childId The noderefs of the children to add + * @param toAdd The noderefs of the children to add */ protected abstract void addTarget(Node node, String[] toAdd); diff --git a/source/java/org/alfresco/web/ui/repo/component/template/DefaultModelHelper.java b/source/java/org/alfresco/web/ui/repo/component/template/DefaultModelHelper.java index 561ed49dd3..23c36c46a9 100644 --- a/source/java/org/alfresco/web/ui/repo/component/template/DefaultModelHelper.java +++ b/source/java/org/alfresco/web/ui/repo/component/template/DefaultModelHelper.java @@ -24,18 +24,12 @@ */ package org.alfresco.web.ui.repo.component.template; -import java.util.Date; -import java.util.HashMap; import java.util.Map; -import org.alfresco.repo.template.DateCompareMethod; import org.alfresco.repo.template.FreeMarkerProcessor; -import org.alfresco.repo.template.HasAspectMethod; -import org.alfresco.repo.template.I18NMessageMethod; import org.alfresco.service.ServiceRegistry; import org.alfresco.service.cmr.repository.NodeRef; import org.alfresco.service.cmr.repository.TemplateImageResolver; -import org.alfresco.service.cmr.repository.TemplateNode; import org.alfresco.web.app.Application; import org.alfresco.web.bean.repository.Repository; import org.alfresco.web.bean.repository.User; @@ -44,7 +38,7 @@ import org.alfresco.web.ui.common.Utils; /** * Helper class to generate the default template model. *

- * See {@link http://www.alfresco.org/mediawiki/index.php/Template_Guide} + * See http://www.alfresco.org/mediawiki/index.php/Template_Guide for details * * @author Kevin Roast */ @@ -66,7 +60,7 @@ public class DefaultModelHelper * Uses the default TemplateImageResolver instance to resolve icons - assumes that the client * has a valid FacesContext. *

- * See {@link http://www.alfresco.org/mediawiki/index.php/Template_Guide} + * See http://www.alfresco.org/mediawiki/index.php/Template_Guide for details * * @return Map containing the default model. */ @@ -82,7 +76,7 @@ public class DefaultModelHelper * Other root level objects such as the current Space or Document are generally * added by the appropriate bean responsible for provided access to those nodes. *

- * See {@link http://www.alfresco.org/mediawiki/index.php/Template_Guide} + * See http://www.alfresco.org/mediawiki/index.php/Template_Guide for details * * @return Map containing the default model. */ diff --git a/source/java/org/alfresco/web/ui/repo/renderer/BaseMultiValueRenderer.java b/source/java/org/alfresco/web/ui/repo/renderer/BaseMultiValueRenderer.java index 8b7e476f78..e94a0b74a1 100644 --- a/source/java/org/alfresco/web/ui/repo/renderer/BaseMultiValueRenderer.java +++ b/source/java/org/alfresco/web/ui/repo/renderer/BaseMultiValueRenderer.java @@ -242,7 +242,7 @@ public abstract class BaseMultiValueRenderer extends BaseRenderer * @param component The UIComponent * @param out Writer to write output to * @param nodeService The NodeService - * @param key The key of the item + * @param index The index of the item * @param value The item's value * @throws IOException */ diff --git a/source/java/org/alfresco/web/ui/repo/tag/ContentSelectorTag.java b/source/java/org/alfresco/web/ui/repo/tag/ContentSelectorTag.java index 4287b2a67f..a12af8e132 100644 --- a/source/java/org/alfresco/web/ui/repo/tag/ContentSelectorTag.java +++ b/source/java/org/alfresco/web/ui/repo/tag/ContentSelectorTag.java @@ -89,7 +89,7 @@ public class ContentSelectorTag extends HtmlComponentTag /** * Set the multiSelect * - * @param mutliSelect the multiSelect + * @param multiSelect the multiSelect */ public void setMultiSelect(String multiSelect) {