Changes between Version 63 and Version 64 of j2p


Ignore:
Timestamp:
05/15/24 10:09:26 (6 months ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • j2p

    v63 v64  
    125125{{{@Nonnull String val}}} or {{{@Nonnull String f() { ... } }}}. Java primitive types like {{{boolean}}} and {{{int}}} can never be null and do not need @Nonnull
    126126
    127 Note that Nonnull is NOT inherited by subclasses. Therefore the annotation may have to be repeated in the derived classes.
     127Note that Nonnull is NOT inherited by subclasses (was decided so by Java engineers). Therefore the has to be repeated in the derived classes.
    128128
    129129==== More notes: