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 34 @Documented  35 @Target ({ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER, ElementType.LOCAL_VARIABLE}) 36 @Retention (RetentionPolicy.CLASS) 37 public @interface NonNull { 38 } 39 | Popular Tags |