summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main/java/org/bukkit/boss/BossBar.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/main/java/org/bukkit/boss/BossBar.java b/src/main/java/org/bukkit/boss/BossBar.java
index bf472a76..effc3295 100644
--- a/src/main/java/org/bukkit/boss/BossBar.java
+++ b/src/main/java/org/bukkit/boss/BossBar.java
@@ -115,12 +115,30 @@ public interface BossBar {
List<Player> getPlayers();
/**
+ * Set if the boss bar is displayed to attached players.
+ *
+ * @param visible visible status
+ */
+ void setVisible(boolean visible);
+
+ /**
+ * Return if the boss bar is displayed to attached players.
+ *
+ * @return visible status
+ */
+ boolean isVisible();
+
+ /**
* Shows the previously hidden boss bar to all attached players
+ * @deprecated {@link #setVisible(boolean)}
*/
+ @Deprecated
void show();
/**
* Hides this boss bar from all attached players
+ * @deprecated {@link #setVisible(boolean)}
*/
+ @Deprecated
void hide();
}