From cfa3991bfc282a95c7580d5eb2bfed5e380b8c24 Mon Sep 17 00:00:00 2001 From: Jon Cox Date: Sat, 22 Jul 2006 19:24:15 +0000 Subject: [PATCH] Removed javadoc warnings from avm dir. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@3379 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- source/java/org/alfresco/repo/avm/AVMContext.java | 2 +- .../java/org/alfresco/repo/avm/AVMNodePropertyDAO.java | 2 +- source/java/org/alfresco/repo/avm/AVMService.java | 10 +++++----- source/java/org/alfresco/repo/avm/VersionRootDAO.java | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/source/java/org/alfresco/repo/avm/AVMContext.java b/source/java/org/alfresco/repo/avm/AVMContext.java index 7ccc6cd59a..3cfe817d08 100644 --- a/source/java/org/alfresco/repo/avm/AVMContext.java +++ b/source/java/org/alfresco/repo/avm/AVMContext.java @@ -129,7 +129,7 @@ public class AVMContext } /** - * @param aVMStore the fAVMStoreDAO to set + * @param aVMStoreDAO The fAVMStoreDAO to set */ public void setAvmStoreDAO(AVMStoreDAO aVMStoreDAO) { diff --git a/source/java/org/alfresco/repo/avm/AVMNodePropertyDAO.java b/source/java/org/alfresco/repo/avm/AVMNodePropertyDAO.java index e62d2531aa..34795937e4 100644 --- a/source/java/org/alfresco/repo/avm/AVMNodePropertyDAO.java +++ b/source/java/org/alfresco/repo/avm/AVMNodePropertyDAO.java @@ -39,7 +39,7 @@ public interface AVMNodePropertyDAO * @param name The QName. * @return The found AVMNodeProperty or null if not found. */ - public AVMNodeProperty get(AVMNode node, QName name); + public AVMNodeProperty get(AVMNode owner, QName name); /** * Get a List of all properties for an owning node. diff --git a/source/java/org/alfresco/repo/avm/AVMService.java b/source/java/org/alfresco/repo/avm/AVMService.java index 4d2c6072aa..14f730b600 100644 --- a/source/java/org/alfresco/repo/avm/AVMService.java +++ b/source/java/org/alfresco/repo/avm/AVMService.java @@ -108,19 +108,19 @@ public interface AVMService /** * Create a new layered file. - * @param srcPath The simple absolute path that the new file will point at. + * @param targetPath The simple absolute path that the new file will point at. * @param parent The simple absolute path to the parent. * @param name The name to give the new file. */ - public void createLayeredFile(String srcPath, String parent, String name); + public void createLayeredFile(String targetPath, String parent, String name); /** * Create a new layered directory. - * @param srcPath The simple absolute path that the new folder will point at. + * @param targetPath The simple absolute path that the new folder will point at. * @param parent The simple absolute path to the parent. * @param name The name to give the new folder. */ - public void createLayeredDirectory(String srcPath, String parent, String name); + public void createLayeredDirectory(String targetPath, String parent, String name); /** * Retarget a layered directory. @@ -183,7 +183,7 @@ public interface AVMService * deleted, or modified since the last time this function was called, is marked * as needing to be copied, so that further modifications will trigger copy on write * semantics. - * @param stores The names of the AVMStores to snapshot. + * @param repositories The names of the AVMStores to snapshot. */ public List createSnapshot(List repositories); diff --git a/source/java/org/alfresco/repo/avm/VersionRootDAO.java b/source/java/org/alfresco/repo/avm/VersionRootDAO.java index a64f922f2e..c9cba6e2fd 100644 --- a/source/java/org/alfresco/repo/avm/VersionRootDAO.java +++ b/source/java/org/alfresco/repo/avm/VersionRootDAO.java @@ -64,7 +64,7 @@ public interface VersionRootDAO /** * Get the highest numbered version in a store. - * @param stor The store. + * @param store The store. * @return The highest numbered version. */ public VersionRoot getMaxVersion(AVMStore store);