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