Implement PR #212 - sendMessages() for CommandSenders

This commit is contained in:
md_5
2013-03-19 11:43:37 +11:00
parent 49f2f5f28b
commit 87fcef0658
3 changed files with 26 additions and 0 deletions

View File

@@ -19,6 +19,14 @@ public interface CommandSender
*/
public void sendMessage(String message);
/**
* Send several messages to this sender. Each message will be sent
* separately.
*
* @param messages the messages to send
*/
public void sendMessages(String... messages);
/**
* Get all groups this user is part of. This returns an unmodifiable
* collection.