本文整理汇总了Java中fr.evercraft.everapi.plugin.file.EConfig类的典型用法代码示例。如果您正苦于以下问题:Java EConfig类的具体用法?Java EConfig怎么用?Java EConfig使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
EConfig类属于fr.evercraft.everapi.plugin.file包,在下文中一共展示了EConfig类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: load
import fr.evercraft.everapi.plugin.file.EConfig; //导入依赖的package包/类
public void load() {
boolean enable = !this.plugin.getConfigs().get(EConfig.DISABLE_COMMANDS).getChildrenList().stream()
.filter(command -> this.getName().equalsIgnoreCase(command.getString("")))
.findAny().isPresent();
if (!enable) {
this.plugin.getELogger().info("[Command] The '" + this.getName() + "' command is disabled");
}
if (enable && !this.enable) {
this.enable = true;
this.plugin.getGame().getCommandManager().register(this.plugin, this, ImmutableList.<String>builder().add(this.name).addAll(this.alias).build());
} else if (!enable && this.enable) {
this.enable = false;
this.plugin.getGame().getCommandManager().getOwnedBy(this.plugin).stream()
.filter(command -> command.getPrimaryAlias().equals(this.getName()))
.forEach(command -> this.plugin.getGame().getCommandManager().removeMapping(command));
}
}
开发者ID:EverCraft,项目名称:EverAPI,代码行数:20,代码来源:ECommand.java
示例2: getConfigs
import fr.evercraft.everapi.plugin.file.EConfig; //导入依赖的package包/类
public abstract EConfig<T> getConfigs();
开发者ID:EverCraft,项目名称:EverAPI,代码行数:2,代码来源:EPlugin.java
注:本文中的fr.evercraft.everapi.plugin.file.EConfig类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论