Home | History | Annotate | Download | only in concurrent

Lines Matching refs:FIELD

18  * The field or method to which this annotation is applied can only be accessed
22 * The argument determines which lock guards the annotated field or method: this :
23 * The string literal "this" means that this field is guarded by the class in
27 * object to which the field refers. field-name : The lock object is referenced
28 * by the (instance or static) field specified by field-name.
29 * class-name.field-name : The lock object is reference by the static field
30 * specified by class-name.field-name. method-name() : The lock object is
34 @Target( { ElementType.FIELD, ElementType.METHOD })