本文整理汇总了Java中org.bukkit.help.GenericCommandHelpTopic类的典型用法代码示例。如果您正苦于以下问题:Java GenericCommandHelpTopic类的具体用法?Java GenericCommandHelpTopic怎么用?Java GenericCommandHelpTopic使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
GenericCommandHelpTopic类属于org.bukkit.help包,在下文中一共展示了GenericCommandHelpTopic类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: registerHelp
import org.bukkit.help.GenericCommandHelpTopic; //导入依赖的package包/类
public void registerHelp() {
helps.clear();
final HelpMap help = Bukkit.getHelpMap();
final HelpTopic t = new GenericCommandHelpTopic(bukkitCommand);
help.addTopic(t);
helps.add(t);
final HelpTopic aliases = help.getHelpTopic("Aliases");
if (aliases != null && aliases instanceof IndexHelpTopic) {
aliases.getFullText(Bukkit.getConsoleSender()); // CraftBukkit has a lazy IndexHelpTopic class (org.bukkit.craftbukkit.help.CustomIndexHelpTopic) - maybe its used for aliases as well
try {
final Field topics = IndexHelpTopic.class.getDeclaredField("allTopics");
topics.setAccessible(true);
@SuppressWarnings("unchecked")
final ArrayList<HelpTopic> as = new ArrayList<HelpTopic>((Collection<HelpTopic>) topics.get(aliases));
for (final String alias : activeAliases) {
final HelpTopic at = new CommandAliasHelpTopic("/" + alias, "/" + getLabel(), help);
as.add(at);
helps.add(at);
}
Collections.sort(as, HelpTopicComparator.helpTopicComparatorInstance());
topics.set(aliases, as);
} catch (final Exception e) {
Skript.outdatedError(e);//, "error registering aliases for /" + getName());
}
}
}
示例2: injectCommand
import org.bukkit.help.GenericCommandHelpTopic; //导入依赖的package包/类
private void injectCommand(String prefix, Command command) {
org.bukkit.command.Command performer = this.createBukkitCommand(command);
this.bukkitCommandMap.register(prefix, performer);
this.helpTopics.add(new GenericCommandHelpTopic(performer));
}