public class PlayerSetSignTextEvent extends PlayerEvent implements Cancellable
Constructor and Description |
---|
PlayerSetSignTextEvent(Player player,
int signID,
java.lang.String text) |
Modifier and Type | Method and Description |
---|---|
int |
getLineColor(int line) |
java.lang.String |
getLineText(int line)
Gets the content of a certain line (of the text the player wants to set for this sign).
|
int |
getNumLines() |
java.lang.String |
getRawText()
Gets the raw text the player wants to set for this sign, i.e. the text including
color codes.
|
Sign |
getSign()
Gets the related sign object.
|
int |
getSignID()
Gets the related sign ID.
|
java.lang.String |
getText()
Gets the text the player wants to set for this sign.
|
boolean |
isCancelled()
Determines if the event is cancelled.
|
void |
setCancelled(boolean cancel)
Cancels this event.
|
void |
setLine(int line,
int color,
java.lang.String text)
Changes the text of a certain line.
|
void |
setLine(int line,
java.lang.String text)
Changes a certain line of text the player wants to set for this sign (using default black color 0x000000).
|
void |
setText(java.lang.String text)
Sets a new text you want to be set for the sign.
|
getPlayer
public PlayerSetSignTextEvent(Player player, int signID, java.lang.String text)
public java.lang.String getText()
getRawText()
.public java.lang.String getRawText()
public void setText(java.lang.String text)
text
- the text you want to set.public int getNumLines()
public int getLineColor(int line)
public java.lang.String getLineText(int line)
line
- the line of the text. For example, to get the first line, provide 0,
to get the second line, provide 1 etc.public void setLine(int line, java.lang.String text)
line
- the line you want to change (0 for the first line, 1 for the 2nd line etc).text
- the text you want to set for this line. Provide an empty string to clear
the line.public void setLine(int line, int color, java.lang.String text)
line
- the line you want to change (0 for the first line, 1 for the 2nd line etc).color
- the RGB color of the line (format: 0xRRGGBB, e.g. 0x000000 for black,
0xFF0000 for red, 0xFFFFFF for white etc).text
- the text you want to set for this line. Provide an empty string to clear
the line.public int getSignID()
public Sign getSign()
public boolean isCancelled()
Cancellable
isCancelled
in interface Cancellable
public void setCancelled(boolean cancel)
Cancellable
setCancelled
in interface Cancellable
cancel
- set to true if you want to cancel this event.