Bukkit  1.4.7-R1.0
 All Classes Namespaces Files Functions Variables Enumerator Pages
ConversationCanceller.java
Go to the documentation of this file.
1 package org.bukkit.conversations;
2 
7 public interface ConversationCanceller extends Cloneable {
8 
13  public void setConversation(Conversation conversation);
14 
21  public boolean cancelBasedOnInput(ConversationContext context, String input);
22 
29 }