當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。