public interface SeasonsSignManager
| Modifier and Type | Method and Description |
|---|---|
boolean |
checkSign(org.bukkit.block.Sign sign) |
void |
checkSigns()
Check all the Signs and remove the no-signs.
|
void |
createSign(org.bukkit.block.Sign sign)
Create a Season Sign at the specific Block (if it's a Sign).
|
org.bukkit.block.Sign[] |
getSigns() |
java.lang.String[] |
getUpdatedLines() |
boolean |
isSeasonsSign(org.bukkit.block.Sign sign) |
void |
removeSign(org.bukkit.block.Sign sign)
Remove this Sign from the Seasons's ones.
|
void |
update()
Update all the Seasons Signs.
|
void |
update(org.bukkit.block.Sign sign,
java.lang.String[] lines)
Update the Seasons Sign at the specific Block with the lines.
|
void createSign(org.bukkit.block.Sign sign)
sign - Sign to add.void removeSign(org.bukkit.block.Sign sign)
sign - Sign to remove.void update()
#update(Block, String[])void update(org.bukkit.block.Sign sign,
java.lang.String[] lines)
block - Sign Block you want to update.lines - 3 Lines you want to put on it (example : { "Hi" , "I'm Rominos2" , "The Seasons' God" } ).update()boolean isSeasonsSign(org.bukkit.block.Sign sign)
sign - Sign you want to check.void checkSigns()
checkSign(Sign)boolean checkSign(org.bukkit.block.Sign sign)
sign - Sign you want to check.checkSigns()org.bukkit.block.Sign[] getSigns()
java.lang.String[] getUpdatedLines()