Skip to content

Commit 4b6f6f3

Browse files
committed
Fix html entities in javadoc.
1 parent 2b8f383 commit 4b6f6f3

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/main/java/com/brunomnsilva/smartgraph/containers/ContentZoomScrollPane.java

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -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 &ge; 1 and
79+
* {@code deltaScaleFactor} must be &gt; 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 &ge; 1.
84+
* @param deltaScaleFactor the zoom increment applied per zoom gesture (e.g., 0.25). Must be &gt; 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} &lt; 1,
90+
* or {@code deltaScaleFactor} &le; 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 &ge; 1 and
144+
* {@code deltaScaleFactor} must be &gt; 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 &ge; 1.
149+
* @param deltaScaleFactor the zoom increment applied per zoom gesture (e.g., 0.25). Must be &gt; 0.
150+
* @throws IllegalArgumentException if {@code content} is {@code null}, {@code maxScaleFactor} &lt; 1,
151+
* or {@code deltaScaleFactor} &le; 0.
152152
*/
153153
public ContentZoomScrollPane(Pane content, double maxScaleFactor, double deltaScaleFactor) {
154154
this(content, maxScaleFactor, deltaScaleFactor, true, true, false, true);

0 commit comments

Comments
 (0)