Changes between Version 66 and Version 67 of j2p
- Timestamp:
- 05/15/24 10:15:20 (6 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
j2p
v66 v67 126 126 127 127 {{{#!td style="background: #efe" 128 @Nonnull can be used by the java compiler to do extra checks on your code. You may need to enable this. For instance in Eclipse check Preferences/Java/Compiler/Errors/Warnings and scroll down to "Null Analysis" 128 @Nonnull can be used by the java compiler to do extra checks on your code. You may need to enable this. For instance in Eclipse check Preferences/Java/Compiler/Errors/Warnings and scroll down to "Null Analysis". Note that Eclipse uses its own annotations, you have to add @Nonnull. 129 129 }}} 130 130 131 131 {{{#!td style="background: #fee" 132 @Nonnull is NOT inherited by subclasses (was decided so by Java engineers). Therefore thehas to be repeated in the derived classes.132 @Nonnull is NOT inherited by subclasses (was decided so by Java engineers). Therefore @Nonnull has to be repeated in the derived classes. 133 133 }}} 134 134