JDK-8114766 : TableColumn javadoc problems
  • Type: Sub-task
  • Component: javafx
  • Sub-Component: controls
  • Affected Version: fx2.0
  • Priority: P3
  • Status: Closed
  • Resolution: Cannot Reproduce
  • Submitted: 2011-06-28
  • Updated: 2015-06-16
  • Resolved: 2011-09-02
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
fx2.0Resolved
Related Reports
Duplicate :  
Relates :  
Description
1. There are several JavaFX script code examples in TableColumn javadoc. For example, in setCellFactory javadoc:

    function():TableCell {
    def cell:TableCell = TableCell {
    node: bind Label {
    text: bind if (cell.item == null) null else "{cell.item}";
    }
    }
    }
    
2. There are broken "SeeAlso" links, for example: #setCellFactory(javafx.util.Callback, javafx.scene.control.TableCell>)

3. Incorrect "<" and ">" escaping in the following line causes "<S>" to be interpreted as strikethrough tag so the next line is struck through just like it is deprecated while it is not and also producing incorrect meaning "S - The type of the TableView generic type (i.e. S == TableView)":

* @param <S> The type of the TableView generic type (i.e. S == TableView<S>)
Comments
Verified in b44.
02-09-2011

Was fixed in separate documentation improvements.
02-09-2011

Added one more problem in TableColumn javadoc
23-08-2011