From de42bc50816e6ba340948e8e568c9cb65658c10a Mon Sep 17 00:00:00 2001 From: ribeaudc <ribeaudc> Date: Wed, 27 Jun 2007 14:15:22 +0000 Subject: [PATCH] javadoc: - add the author SVN: 702 --- .../java/ch/systemsx/cisd/common/annotation/GuardedBy.java | 2 ++ .../java/ch/systemsx/cisd/common/annotation/ThreadSafe.java | 2 ++ 2 files changed, 4 insertions(+) diff --git a/common/source/java/ch/systemsx/cisd/common/annotation/GuardedBy.java b/common/source/java/ch/systemsx/cisd/common/annotation/GuardedBy.java index bbf463f9834..8f6c0c8a81d 100644 --- a/common/source/java/ch/systemsx/cisd/common/annotation/GuardedBy.java +++ b/common/source/java/ch/systemsx/cisd/common/annotation/GuardedBy.java @@ -37,6 +37,8 @@ import java.lang.annotation.Target; * <li><code>method-name()</code> : The lock object is returned by calling the named nil-ary method. </li> * <li> <code>class-name.class</code> : The Class object for the specified class should be used as the lock object. * </li> + * + * @author Christian Ribeaud */ @Target( { ElementType.FIELD, ElementType.METHOD }) diff --git a/common/source/java/ch/systemsx/cisd/common/annotation/ThreadSafe.java b/common/source/java/ch/systemsx/cisd/common/annotation/ThreadSafe.java index adb33564679..2d78e554447 100644 --- a/common/source/java/ch/systemsx/cisd/common/annotation/ThreadSafe.java +++ b/common/source/java/ch/systemsx/cisd/common/annotation/ThreadSafe.java @@ -27,6 +27,8 @@ import java.lang.annotation.Target; * writes to public fields, calls to public methods) may put the object into an invalid state, regardless of the * interleaving of those actions by the runtime, and without requiring any additional synchronization or coordination on * the part of the caller. + * + * @author Christian Ribeaud */ @Documented @Target(ElementType.TYPE) -- GitLab