org.netbeans.modules.gsf.api.annotations |
|
Java Source File Name | Type | Comment |
CheckForNull.java | Annotation | The annotation target may be null, so code accessing it needs to check. |
NonNull.java | Annotation | The annotation target should never be null. |
Nullable.java | Annotation | The annotation target can be null, so usages must check before using the field or variable. |