1 19 20 package org.netbeans.api.gsf.annotations; 21 22 import java.lang.annotation.Documented ; 23 import java.lang.annotation.ElementType ; 24 import java.lang.annotation.Retention ; 25 import java.lang.annotation.RetentionPolicy ; 26 import java.lang.annotation.Target ; 27 28 32 @Documented  33 @Target ({ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER, ElementType.LOCAL_VARIABLE}) 34 @Retention (RetentionPolicy.CLASS) 35 public @interface CheckForNull { 36 } 37 | Popular Tags |