本文整理汇总了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;
}
示例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;
}
示例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;
}
示例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;
}
示例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);
}
示例6: BlockLockerConfigConverter
import org.cubeengine.libcube.service.matcher.MaterialMatcher; //导入依赖的package包/类
public BlockLockerConfigConverter(Log logger, MaterialMatcher mm)
{
super(logger);
this.mm = mm;
}
示例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;
}