JDK-8088604 : [DateTimeStringConverter] missing javadoc for protected fields
  • Type: Bug
  • Component: javafx
  • Sub-Component: controls
  • Affected Version: fx2.1,8
  • Priority: P4
  • Status: Open
  • Resolution: Unresolved
  • Submitted: 2014-12-12
  • Updated: 2018-09-05
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
Other
tbdUnresolved
Related Reports
Relates :  
Relates :  
Description
While reviewing the API signature changes for 8u40 I noticed that the following protected fields of DateTimeStringConverter do not have proper javadoc comments. Note that protected fields and methods in Java are public API (meaning that the comment preceding those fields is simply wrong).

    protected final Locale locale;
    protected final String pattern;
    protected final DateFormat dateFormat;
    protected final int dateStyle;
    protected final int timeStyle;

I expect that these were not intended to be public API, but since they are, we need to document them at some point.
Comments
Target to 9 but could do this for 8u60.
12-12-2014