Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -353,9 +353,9 @@ public final DoubleProperty vmaxProperty() {
return vmax;
}
/**
* If true and if the contained node is a Resizable, then the node will be
* If true and if the contained node is {@link Node#isResizable resizable}, then the node will be
* kept resized to match the width of the ScrollPane's viewport. If the
* contained node is not a Resizable, this value is ignored.
* contained node is not resizable, this value is ignored.
*/
private BooleanProperty fitToWidth;
public final void setFitToWidth(boolean value) {
Expand Down Expand Up @@ -390,9 +390,9 @@ public String getName() {
return fitToWidth;
}
/**
* If true and if the contained node is a Resizable, then the node will be
* If true and if the contained node is {@link Node#isResizable resizable}, then the node will be
* kept resized to match the height of the ScrollPane's viewport. If the
* contained node is not a Resizable, this value is ignored.
* contained node is not resizable, this value is ignored.
*/
private BooleanProperty fitToHeight;
public final void setFitToHeight(boolean value) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
* description of how to write custom Cells.
*
* <h3>Warning: Nodes should not be inserted directly into the TreeView cells</h3>
* {@code TreeView} allows for it's cells to contain elements of any type, including
* {@code TreeView} allows for its cells to contain elements of any type, including
* {@code Node} instances. Putting nodes into
* the TreeView cells is <strong>strongly discouraged</strong>, as it can
* lead to unexpected results.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public JavaFXBuilderFactory(ClassLoader classLoader) {

/**
* Returns the builder for the specified type, or null if no builder is
* used. Most classes will note use a builder.
* used. Most classes will not use a builder.
*
* @param type the class being looked up
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@
public enum Collation {

/**
* The same numbered pages are consecutive in the output,
* For example: 2 copies of a document with 2 pages is printed :
* The same numbered pages are consecutive in the output.
* For example, 2 copies of a document with 2 pages is printed:
* Page 1, Page 1, Page 2, Page 2.
*/
UNCOLLATED,

/**
* Each copy of a document is printed together.
* FOr example: 2 copies of a document with 2 pages is printed :
* For example, 2 copies of a document with 2 pages is printed:
* Page 1, Page 2, Page 1, Page 2.
*/
COLLATED
Expand Down