Organize Imports

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/HEAD@74022 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Tuna Aksoy
2014-06-17 15:48:28 +00:00
parent 0bce51ac8d
commit 565e198d0b
2 changed files with 11 additions and 12 deletions

View File

@@ -81,7 +81,7 @@ public class ServiceBaseImpl implements RecordsManagementModel, ApplicationConte
/** /**
* Gets the file plan component kind from the given node reference * Gets the file plan component kind from the given node reference
* *
* @see org.alfresco.module.org_alfresco_module_rm.fileplan.FilePlanService#getFilePlanComponentKind(org.alfresco.service.cmr.repository.NodeRef) * @see FilePlanService#getFilePlanComponentKind(org.alfresco.service.cmr.repository.NodeRef)
*/ */
public FilePlanComponentKind getFilePlanComponentKind(NodeRef nodeRef) public FilePlanComponentKind getFilePlanComponentKind(NodeRef nodeRef)
{ {
@@ -191,7 +191,7 @@ public class ServiceBaseImpl implements RecordsManagementModel, ApplicationConte
* <p> * <p>
* Exposed in the FilePlan service. * Exposed in the FilePlan service.
* *
* @see org.alfresco.module.org_alfresco_module_rm.fileplan.FilePlanService#isFilePlanComponent(org.alfresco.service.cmr.repository.NodeRef) * @see FilePlanService#isFilePlanComponent(org.alfresco.service.cmr.repository.NodeRef)
*/ */
public boolean isFilePlanComponent(NodeRef nodeRef) public boolean isFilePlanComponent(NodeRef nodeRef)
{ {
@@ -213,7 +213,7 @@ public class ServiceBaseImpl implements RecordsManagementModel, ApplicationConte
* <p> * <p>
* Exposed in the FilePlan service. * Exposed in the FilePlan service.
* *
* @see org.alfresco.module.org_alfresco_module_rm.fileplan.FilePlanService#isFilePlan(org.alfresco.service.cmr.repository.NodeRef) * @see FilePlanService#isFilePlan(org.alfresco.service.cmr.repository.NodeRef)
*/ */
public boolean isFilePlan(NodeRef nodeRef) public boolean isFilePlan(NodeRef nodeRef)
{ {
@@ -223,7 +223,7 @@ public class ServiceBaseImpl implements RecordsManagementModel, ApplicationConte
/** /**
* Indicates whether the given node is a file plan container or not. * Indicates whether the given node is a file plan container or not.
* *
* @see org.alfresco.module.org_alfresco_module_rm.fileplan.FilePlanService#isFilePlanContainer(org.alfresco.service.cmr.repository.NodeRef) * @see FilePlanService#isFilePlanContainer(org.alfresco.service.cmr.repository.NodeRef)
*/ */
public boolean isFilePlanContainer(NodeRef nodeRef) public boolean isFilePlanContainer(NodeRef nodeRef)
{ {
@@ -233,7 +233,7 @@ public class ServiceBaseImpl implements RecordsManagementModel, ApplicationConte
/** /**
* Indicates whether the given node is a record category or not. * Indicates whether the given node is a record category or not.
* *
* @see org.alfresco.module.org_alfresco_module_rm.fileplan.FilePlanService#isRecordCategory(org.alfresco.service.cmr.repository.NodeRef) * @see FilePlanService#isRecordCategory(org.alfresco.service.cmr.repository.NodeRef)
*/ */
public boolean isRecordCategory(NodeRef nodeRef) public boolean isRecordCategory(NodeRef nodeRef)
{ {

View File

@@ -20,7 +20,6 @@ package org.alfresco.repo.policy.annotation;
import org.alfresco.repo.policy.Behaviour; import org.alfresco.repo.policy.Behaviour;
/** /**
* Interface for a behaviour registry. * Interface for a behaviour registry.
* *
@@ -34,7 +33,7 @@ public interface BehaviourRegistry
* *
* @param behaviour behaviour * @param behaviour behaviour
*/ */
void registerBehaviour(String name, org.alfresco.repo.policy.Behaviour behaviour); void registerBehaviour(String name, Behaviour behaviour);
/** /**
* Gets the behaviour for a given name. * Gets the behaviour for a given name.
@@ -42,5 +41,5 @@ public interface BehaviourRegistry
* @param name behaviour name * @param name behaviour name
* @return {@link Behaviour} behaviour, null otherwise * @return {@link Behaviour} behaviour, null otherwise
*/ */
org.alfresco.repo.policy.Behaviour getBehaviour(String name); Behaviour getBehaviour(String name);
} }