PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/SubCommand.java

53 lines
2.8 KiB
Java
Raw Normal View History

2014-11-08 20:27:09 +01:00
////////////////////////////////////////////////////////////////////////////////////////////////////
// PlotSquared - A plot manager and world generator for the Bukkit API /
// Copyright (c) 2014 IntellectualSites/IntellectualCrafters /
// /
// This program is free software; you can redistribute it and/or modify /
// it under the terms of the GNU General Public License as published by /
// the Free Software Foundation; either version 3 of the License, or /
// (at your option) any later version. /
// /
// This program is distributed in the hope that it will be useful, /
// but WITHOUT ANY WARRANTY; without even the implied warranty of /
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the /
// GNU General Public License for more details. /
// /
// You should have received a copy of the GNU General Public License /
// along with this program; if not, write to the Free Software Foundation, /
// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA /
// /
// You can contact us via: support@intellectualsites.com /
////////////////////////////////////////////////////////////////////////////////////////////////////
2014-09-22 13:02:14 +02:00
package com.intellectualcrafters.plot.commands;
2015-01-13 17:38:15 +01:00
import com.intellectualcrafters.plot.config.C;
2015-02-20 11:53:18 +01:00
import com.intellectualcrafters.plot.object.PlotPlayer;
2015-01-13 17:38:15 +01:00
2014-09-22 13:02:14 +02:00
/**
* SubCommand class
*
2014-09-22 13:02:14 +02:00
* @author Citymonstret
*/
2015-02-20 07:34:19 +01:00
@SuppressWarnings({ "deprecation", "unused" })
2015-07-27 19:50:04 +02:00
public abstract class SubCommand extends com.plotsquared.general.commands.Command<PlotPlayer> {
2015-02-23 02:32:27 +01:00
2014-11-05 04:42:08 +01:00
/**
* The category
2014-11-20 00:00:38 +01:00
*/
public CommandCategory category;
2015-02-23 02:32:27 +01:00
2014-11-05 04:42:08 +01:00
/**
* Send a message
*
2014-12-18 03:15:11 +01:00
* @param plr Player who will receive the mssage
* @param c Caption
* @param args Arguments (%s's)
*
2015-03-13 08:02:48 +01:00
* @see com.intellectualcrafters.plot.util.MainUtil#sendMessage(PlotPlayer, C, String...)
2014-11-05 04:42:08 +01:00
*/
2015-07-27 17:14:38 +02:00
public boolean sendMessage(PlotPlayer plr, final C c, final String... args) {
c.send(plr, args);
2014-11-08 20:27:09 +01:00
return true;
2014-11-05 04:42:08 +01:00
}
2014-12-16 06:03:20 +01:00
}