本文整理了Java中org.bukkit.command.Command.setAliases()
方法的一些代码示例,展示了Command.setAliases()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Command.setAliases()
方法的具体详情如下:
包路径:org.bukkit.command.Command
类名称:Command
方法名:setAliases
[英]Sets the list of aliases to request on registration for this command. This is not effective outside of defining aliases in the PluginDescriptionFile#getCommands() (under the ``aliases`' node) is equivalent to this method.
[中]设置注册此命令时要请求的别名列表。除了在PluginDescriptionFile中定义别名外,这是无效的。#getCommands()(在“[$0$]”节点下)与此方法等效。
代码示例来源:origin: Bukkit/Bukkit
newCmd.setAliases(aliasList);
代码示例来源:origin: EngineHub/CommandHelper
@Override
public MCCommand setAliases(List<String> aliases) {
cmd.setAliases(aliases);
return this;
}
代码示例来源:origin: SpigotMC/Spigot-API
newCmd.setAliases(aliasList);
内容来源于网络,如有侵权,请联系作者删除!