本文整理匯總了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;
}