All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bukkit.conversations.NullConversationPrefix Maven / Gradle / Ivy

package org.bukkit.conversations;

/**
 * NullConversationPrefix is a {@link ConversationPrefix} implementation that
 * displays nothing in front of conversation output.
 */
public class NullConversationPrefix implements ConversationPrefix {

  /**
   * Prepends each conversation message with an empty string.
   *
   * @param context Context information about the conversation.
   * @return An empty string.
   */
  public String getPrefix(ConversationContext context) {
    return "";
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy