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>)