![]() |
Bukkit
1.4.7-R1.0
|
The Conversable interface is used to indicate objects that can have conversations. More...
Inheritance diagram for org.bukkit.conversations.Conversable:Public Member Functions | |
| boolean | isConversing () |
| Tests to see of a Conversable object is actively engaged in a conversation. | |
| void | acceptConversationInput (String input) |
| Accepts input into the active conversation. | |
| boolean | beginConversation (Conversation conversation) |
| Enters into a dialog with a Conversation object. | |
| void | abandonConversation (Conversation conversation) |
| Abandons an active conversation. | |
| void | abandonConversation (Conversation conversation, ConversationAbandonedEvent details) |
| Abandons an active conversation. | |
| void | sendRawMessage (String message) |
| Sends this sender a message raw. | |
The Conversable interface is used to indicate objects that can have conversations.
Definition at line 8 of file Conversable.java.
| void org.bukkit.conversations.Conversable.abandonConversation | ( | Conversation | conversation | ) |
Abandons an active conversation.
| conversation | The conversation to abandon |
Referenced by org.bukkit.conversations.Conversation.abandon().
| void org.bukkit.conversations.Conversable.abandonConversation | ( | Conversation | conversation, |
| ConversationAbandonedEvent | details | ||
| ) |
Abandons an active conversation.
| conversation | The conversation to abandon |
| details | Details about why the conversation was abandoned |
| void org.bukkit.conversations.Conversable.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 |
| boolean org.bukkit.conversations.Conversable.beginConversation | ( | Conversation | conversation | ) |
Enters into a dialog with a Conversation object.
| conversation | The conversation to begin |
Referenced by org.bukkit.conversations.Conversation.begin().
| boolean org.bukkit.conversations.Conversable.isConversing | ( | ) |
Tests to see of a Conversable object is actively engaged in a conversation.
| void org.bukkit.conversations.Conversable.sendRawMessage | ( | String | message | ) |
Sends this sender a message raw.
| message | Message to be displayed |
Referenced by org.bukkit.conversations.ValidatingPrompt.acceptInput(), org.bukkit.conversations.Conversation.acceptInput(), and org.bukkit.conversations.Conversation.outputNextPrompt().