Skip to content
Snippets Groups Projects
Commit de42bc50 authored by ribeaudc's avatar ribeaudc
Browse files

javadoc:

- add the author

SVN: 702
parent 57a554e3
No related branches found
No related tags found
No related merge requests found
...@@ -37,6 +37,8 @@ import java.lang.annotation.Target; ...@@ -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>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> <code>class-name.class</code> : The Class object for the specified class should be used as the lock object.
* </li> * </li>
*
* @author Christian Ribeaud
*/ */
@Target( @Target(
{ ElementType.FIELD, ElementType.METHOD }) { ElementType.FIELD, ElementType.METHOD })
......
...@@ -27,6 +27,8 @@ import java.lang.annotation.Target; ...@@ -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 * 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 * interleaving of those actions by the runtime, and without requiring any additional synchronization or coordination on
* the part of the caller. * the part of the caller.
*
* @author Christian Ribeaud
*/ */
@Documented @Documented
@Target(ElementType.TYPE) @Target(ElementType.TYPE)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment