-
Sub-task
-
Resolution: Cannot Reproduce
-
P3
-
fx2.0
-
javafx-sdk2.0-b33
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>)
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>)
- duplicates
-
JDK-8113802 Get rid of all JavaFX script code in documentation
- Closed
- relates to
-
JDK-8092662 Identify and fix all broken JavaDoc links
- Closed