I'd like to write my Javadoc comments once for each field and access the exiting field's Javadoc in the getter and setter methods.
I know there's the {@inheritDoc}
tag for referencing the parent method's documentation, but I want to include the documentation of a field, which of course is not a parent method.
Is it possible to "don't repeat yourself" with Javadoc?