@@ -75,19 +75,19 @@ public class ContentZoomScrollPane extends ScrollPane {
7575 * The content will be scaled using zooming gestures, panned with mouse drag (if enabled),
7676 * and scrollbars can optionally be shown.
7777 * <p>
78- * The minimum scale factor is fixed at 1. The {@code maxScaleFactor} must be ≥ 1 and
79- * {@code deltaScaleFactor} must be > 0. {@code maxScaleFactor} should ideally be a multiple
78+ * The minimum scale factor is fixed at 1. The {@code maxScaleFactor} must be ≥ 1 and
79+ * {@code deltaScaleFactor} must be > 0. {@code maxScaleFactor} should ideally be a multiple
8080 * of {@code deltaScaleFactor} for smoother zooming steps.
8181 *
8282 * @param content the {@link Pane} to be displayed inside the scroll pane. Cannot be {@code null}.
83- * @param maxScaleFactor the maximum zoom level allowed (e.g., 5.0 for 500% zoom). Must be ≥ 1.
84- * @param deltaScaleFactor the zoom increment applied per zoom gesture (e.g., 0.25). Must be > 0.
83+ * @param maxScaleFactor the maximum zoom level allowed (e.g., 5.0 for 500% zoom). Must be ≥ 1.
84+ * @param deltaScaleFactor the zoom increment applied per zoom gesture (e.g., 0.25). Must be > 0.
8585 * @param enableZoom whether zooming is enabled via mouse scroll.
8686 * @param enablePanning whether panning is enabled via mouse drag.
8787 * @param enableScrollbars whether scrollbars are shown.
8888 * @param enableClipping whether the panel clips overflows of its contents.
89- * @throws IllegalArgumentException if {@code content} is {@code null}, {@code maxScaleFactor} < 1,
90- * or {@code deltaScaleFactor} ≤ 0.
89+ * @throws IllegalArgumentException if {@code content} is {@code null}, {@code maxScaleFactor} < 1,
90+ * or {@code deltaScaleFactor} ≤ 0.
9191 */
9292 public ContentZoomScrollPane (Pane content , double maxScaleFactor , double deltaScaleFactor ,
9393 boolean enableZoom , boolean enablePanning , boolean enableScrollbars , boolean enableClipping ) {
@@ -140,15 +140,15 @@ public ContentZoomScrollPane(Pane content, double maxScaleFactor, double deltaSc
140140 * <li>{@code enableScrollbars = false}</li>
141141 * <li>{@code enableClipping = true}</li>
142142 * </ul>
143- * The minimum scale factor is fixed at 1. The {@code maxScaleFactor} must be ≥ 1 and
144- * {@code deltaScaleFactor} must be > 0. {@code maxScaleFactor} should ideally be a multiple
143+ * The minimum scale factor is fixed at 1. The {@code maxScaleFactor} must be ≥ 1 and
144+ * {@code deltaScaleFactor} must be > 0. {@code maxScaleFactor} should ideally be a multiple
145145 * of {@code deltaScaleFactor} for smoother zooming steps.
146146 *
147147 * @param content the {@link Pane} to be displayed inside the scroll pane. Cannot be {@code null}.
148- * @param maxScaleFactor the maximum zoom level allowed (e.g., 5.0 for 500% zoom). Must be ≥ 1.
149- * @param deltaScaleFactor the zoom increment applied per zoom gesture (e.g., 0.25). Must be > 0.
150- * @throws IllegalArgumentException if {@code content} is {@code null}, {@code maxScaleFactor} < 1,
151- * or {@code deltaScaleFactor} ≤ 0.
148+ * @param maxScaleFactor the maximum zoom level allowed (e.g., 5.0 for 500% zoom). Must be ≥ 1.
149+ * @param deltaScaleFactor the zoom increment applied per zoom gesture (e.g., 0.25). Must be > 0.
150+ * @throws IllegalArgumentException if {@code content} is {@code null}, {@code maxScaleFactor} < 1,
151+ * or {@code deltaScaleFactor} ≤ 0.
152152 */
153153 public ContentZoomScrollPane (Pane content , double maxScaleFactor , double deltaScaleFactor ) {
154154 this (content , maxScaleFactor , deltaScaleFactor , true , true , false , true );
0 commit comments