summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/conversations/StringPrompt.java
blob: 3e3e5e9e4186c6266a15f1da58e6849f456a7e38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.bukkit.conversations;

/**
 * StringPrompt is the base class for any prompt that accepts an arbitrary
 * string from the user.
 */
public abstract class StringPrompt implements Prompt {

    /**
     * Ensures that the prompt waits for the user to provide input.
     *
     * @param context Context information about the conversation.
     * @return True.
     */
    public boolean blocksForInput(ConversationContext context) {
        return true;
    }
}