Bukkit-API
1.7.9-R0.2
The inofficial Bukkit-API
|
Public Member Functions | |
boolean | isConversing () |
void | acceptConversationInput (String input) |
boolean | beginConversation (Conversation conversation) |
void | abandonConversation (Conversation conversation) |
void | abandonConversation (Conversation conversation, ConversationAbandonedEvent details) |
void | sendRawMessage (String message) |
Server | getServer () |
String | getName () |
boolean | isPermissionSet (String name) |
boolean | isPermissionSet (Permission perm) |
boolean | hasPermission (String name) |
boolean | hasPermission (Permission perm) |
PermissionAttachment | addAttachment (Plugin plugin, String name, boolean value) |
PermissionAttachment | addAttachment (Plugin plugin) |
PermissionAttachment | addAttachment (Plugin plugin, String name, boolean value, int ticks) |
PermissionAttachment | addAttachment (Plugin plugin, int ticks) |
void | removeAttachment (PermissionAttachment attachment) |
void | recalculatePermissions () |
Set< PermissionAttachmentInfo > | getEffectivePermissions () |
boolean | isOp () |
void | setOp (boolean value) |
Public Attributes | |
String | lastSentMessage |
Conversation | begunConversation |
Conversation | abandonedConverstion |
ConversationAbandonedEvent | abandonedConversationEvent |
Definition at line 13 of file FakeConversable.java.
void org.bukkit.conversations.FakeConversable.abandonConversation | ( | Conversation | conversation | ) |
Abandons an active conversation.
conversation | The conversation to abandon |
Implements org.bukkit.conversations.Conversable.
Definition at line 33 of file FakeConversable.java.
void org.bukkit.conversations.FakeConversable.abandonConversation | ( | Conversation | conversation, |
ConversationAbandonedEvent | details | ||
) |
Abandons an active conversation.
conversation | The conversation to abandon |
details | Details about why the conversation was abandoned |
Implements org.bukkit.conversations.Conversable.
Definition at line 37 of file FakeConversable.java.
void org.bukkit.conversations.FakeConversable.acceptConversationInput | ( | String | input | ) |
Accepts input into the active conversation. If no conversation is in progress, this method does nothing.
input | The input message into the conversation |
Implements org.bukkit.conversations.Conversable.
Definition at line 23 of file FakeConversable.java.
boolean org.bukkit.conversations.FakeConversable.beginConversation | ( | Conversation | conversation | ) |
Enters into a dialog with a Conversation object.
conversation | The conversation to begin |
Implements org.bukkit.conversations.Conversable.
Definition at line 27 of file FakeConversable.java.
References org.bukkit.conversations.Conversation.outputNextPrompt().
boolean org.bukkit.conversations.FakeConversable.isConversing | ( | ) |
Tests to see of a Conversable object is actively engaged in a conversation.
Implements org.bukkit.conversations.Conversable.
Definition at line 19 of file FakeConversable.java.
void org.bukkit.conversations.FakeConversable.sendRawMessage | ( | String | message | ) |
Sends this sender a message raw
message | Message to be displayed |
Implements org.bukkit.conversations.Conversable.
Definition at line 42 of file FakeConversable.java.