当前位置: 首页>>代码示例>>Java>>正文


Java MaterialMatcher类代码示例

本文整理汇总了Java中org.cubeengine.libcube.service.matcher.MaterialMatcher的典型用法代码示例。如果您正苦于以下问题:Java MaterialMatcher类的具体用法?Java MaterialMatcher怎么用?Java MaterialMatcher使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


MaterialMatcher类属于org.cubeengine.libcube.service.matcher包,在下文中一共展示了MaterialMatcher类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: ItemCommands

import org.cubeengine.libcube.service.matcher.MaterialMatcher; //导入依赖的package包/类
public ItemCommands(PermissionManager pm, MaterialMatcher materialMatcher, EnchantMatcher enchantMatcher, I18n i18n)
{
    super(pm, VanillaPlus.class);
    this.materialMatcher = materialMatcher;
    this.enchantMatcher = enchantMatcher;
    this.i18n = i18n;
}
 
开发者ID:CubeEngine,项目名称:modules-main,代码行数:8,代码来源:ItemCommands.java

示例2: ItemDBCommand

import org.cubeengine.libcube.service.matcher.MaterialMatcher; //导入依赖的package包/类
public ItemDBCommand(VanillaPlus module, MaterialMatcher materialMatcher, EnchantMatcher enchantMatcher, I18n i18n)
{
    this.module = module;
    this.materialMatcher = materialMatcher;
    this.enchantMatcher = enchantMatcher;
    this.i18n = i18n;
}
 
开发者ID:CubeEngine,项目名称:modules-main,代码行数:8,代码来源:ItemDBCommand.java

示例3: PowertoolCommand

import org.cubeengine.libcube.service.matcher.MaterialMatcher; //导入依赖的package包/类
public PowertoolCommand(CommandManager cm, Powertools module, MaterialMatcher materialMatcher, I18n i18n)
{
    super(cm, Powertools.class);
    this.module = module;
    this.materialMatcher = materialMatcher;
    this.i18n = i18n;
}
 
开发者ID:CubeEngine,项目名称:modules-extra,代码行数:8,代码来源:PowertoolCommand.java

示例4: EntityFilterParser

import org.cubeengine.libcube.service.matcher.MaterialMatcher; //导入依赖的package包/类
public EntityFilterParser(I18n i18n, EntityMatcher em, MaterialMatcher mm)
{
    this.i18n = i18n;
    this.em = em;
    this.mm = mm;
}
 
开发者ID:CubeEngine,项目名称:modules-main,代码行数:7,代码来源:EntityFilterParser.java

示例5: RemoveCommands

import org.cubeengine.libcube.service.matcher.MaterialMatcher; //导入依赖的package包/类
public RemoveCommands(VanillaPlus module, EntityMatcher em, MaterialMatcher mm, I18n i18n, CommandManager cm)
{
    this.i18n = i18n;
    this.module = module;
    cm.getProviders().register(module, new EntityFilterParser(i18n, em, mm), EntityFilter.class);
}
 
开发者ID:CubeEngine,项目名称:modules-main,代码行数:7,代码来源:RemoveCommands.java

示例6: BlockLockerConfigConverter

import org.cubeengine.libcube.service.matcher.MaterialMatcher; //导入依赖的package包/类
public BlockLockerConfigConverter(Log logger, MaterialMatcher mm)
{
    super(logger);
    this.mm = mm;
}
 
开发者ID:CubeEngine,项目名称:modules-main,代码行数:6,代码来源:BlockLockConfig.java

示例7: PlayerCommands

import org.cubeengine.libcube.service.matcher.MaterialMatcher; //导入依赖的package包/类
public PlayerCommands(Fun module, I18n i18n, MaterialMatcher materialMatcher)
{
    this.module = module;
    this.i18n = i18n;
    this.materialMatcher = materialMatcher;
}
 
开发者ID:CubeEngine,项目名称:modules-extra,代码行数:7,代码来源:PlayerCommands.java


注:本文中的org.cubeengine.libcube.service.matcher.MaterialMatcher类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。