001 package org.bukkit.conversations; 002 003 import org.bukkit.command.CommandSender; 004 005 /** 006 * NullConversationPrefix is a {@link ConversationPrefix} implementation that 007 * displays nothing in front of conversation output. 008 */ 009 public class NullConversationPrefix implements ConversationPrefix{ 010 011 /** 012 * Prepends each conversation message with an empty string. 013 * 014 * @param context Context information about the conversation. 015 * @return An empty string. 016 */ 017 public String getPrefix(ConversationContext context) { 018 return ""; 019 } 020 }