Changes between Version 63 and Version 64 of j2p
- Timestamp:
- 05/15/24 10:09:26 (6 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
j2p
v63 v64 125 125 {{{@Nonnull String val}}} or {{{@Nonnull String f() { ... } }}}. Java primitive types like {{{boolean}}} and {{{int}}} can never be null and do not need @Nonnull 126 126 127 Note that Nonnull is NOT inherited by subclasses . Therefore the annotation may haveto be repeated in the derived classes.127 Note that Nonnull is NOT inherited by subclasses (was decided so by Java engineers). Therefore the has to be repeated in the derived classes. 128 128 129 129 ==== More notes: