aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuuz <6596629+Juuxel@users.noreply.github.com>2023-11-18 20:57:10 +0200
committerJuuz <6596629+Juuxel@users.noreply.github.com>2023-11-18 20:57:10 +0200
commit1f56b41076648b9242b716f2e458c3be6ff60f1e (patch)
tree3869818f0d7fc73ea781310396027a1873b62222
parentd6eb8b0b58df96673f21fa71bedd744ef5c7c92c (diff)
downloadLibGui-1f56b41076648b9242b716f2e458c3be6ff60f1e.tar.gz
LibGui-1f56b41076648b9242b716f2e458c3be6ff60f1e.tar.bz2
LibGui-1f56b41076648b9242b716f2e458c3be6ff60f1e.zip
WScrollPanel: Add missing since tags
-rw-r--r--src/main/java/io/github/cottonmc/cotton/gui/widget/WScrollPanel.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main/java/io/github/cottonmc/cotton/gui/widget/WScrollPanel.java b/src/main/java/io/github/cottonmc/cotton/gui/widget/WScrollPanel.java
index d0582af..389df93 100644
--- a/src/main/java/io/github/cottonmc/cotton/gui/widget/WScrollPanel.java
+++ b/src/main/java/io/github/cottonmc/cotton/gui/widget/WScrollPanel.java
@@ -56,6 +56,7 @@ public class WScrollPanel extends WClippedPanel {
* Returns this scroll panel's horizontal scroll bar.
*
* @return the horizontal scroll bar
+ * @since 9.1.0
*/
public WScrollBar getHorizontalScrollBar() {
return this.horizontalScrollBar;
@@ -67,6 +68,7 @@ public class WScrollPanel extends WClippedPanel {
* @param horizontalScrollBar the new horizontal scroll bar
* @return this scroll panel
* @throws NullPointerException if the horizontalScrollBar is null
+ * @since 9.1.0
*/
public WScrollPanel setHorizontalScrollBar(WScrollBar horizontalScrollBar) {
this.horizontalScrollBar = Objects.requireNonNull(horizontalScrollBar, "horizontalScrollBar");
@@ -97,6 +99,7 @@ public class WScrollPanel extends WClippedPanel {
* Returns this scroll panel's vertical scroll bar.
*
* @return the vertical scroll bar
+ * @since 9.1.0
*/
public WScrollBar getVerticalScrollBar() {
return this.verticalScrollBar;
@@ -108,6 +111,7 @@ public class WScrollPanel extends WClippedPanel {
* @param verticalScrollBar the new vertical scroll bar
* @return this scroll panel
* @throws NullPointerException if the verticalScrollBar is null
+ * @since 9.1.0
*/
public WScrollPanel setVerticalScrollBar(WScrollBar verticalScrollBar) {
this.verticalScrollBar = Objects.requireNonNull(verticalScrollBar, "verticalScrollBar");