commons-jcs3-sandbox/commons-jcs3-yajcache/src/main/java/org/apache/commons/jcs/yajcache/lang/annotation/Immutable.java [32:41]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@CopyRightApache
@Documented
@Inherited
@Retention(RetentionPolicy.SOURCE)
@Target({
    ElementType.METHOD,         // return value of a method is immutable
    ElementType.FIELD,          // field is immutable
    ElementType.LOCAL_VARIABLE, // variable is immutable
    ElementType.PARAMETER       // parameter is immutable
})
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



commons-jcs3-sandbox/commons-jcs3-yajcache/src/main/java/org/apache/commons/jcs/yajcache/lang/annotation/NonNullable.java [32:41]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@CopyRightApache
@Documented
@Inherited
@Retention(RetentionPolicy.SOURCE)
@Target({
    ElementType.METHOD,         // return value of a method is never null
    ElementType.FIELD,          // field is never null
    ElementType.LOCAL_VARIABLE, // variable is never null
    ElementType.PARAMETER       // parameter is never null
})
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



