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


Java RegistrationError类代码示例

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


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

示例1: register

import appeng.api.exceptions.RegistrationError; //导入依赖的package包/类
/**
 * called when all recipes are parsed, and your required to register your recipe.
 * 
 * @throws RegistrationError
 * @throws MissingIngredientError
 */
public void register() throws RegistrationError, MissingIngredientError;
 
开发者ID:amadornes,项目名称:Framez,代码行数:8,代码来源:ICraftHandler.java

示例2: getItemStack

import appeng.api.exceptions.RegistrationError; //导入依赖的package包/类
/**
 * Acquire a single input stack for the current recipe, if more then one ItemStack is possible a
 * RegistrationError exception will be thrown, ignore these and let the system handle the error.
 * 
 * @return a single ItemStack for the recipe handler.
 * 
 * @throws RegistrationError
 * @throws MissingIngredientError
 */
ItemStack getItemStack() throws RegistrationError, MissingIngredientError;
 
开发者ID:amadornes,项目名称:Framez,代码行数:11,代码来源:IIngredient.java

示例3: getItemStackSet

import appeng.api.exceptions.RegistrationError; //导入依赖的package包/类
/**
 * Acquire a list of all the input stacks for the current recipe, this is for handlers that support
 * multiple inputs per slot.
 * 
 * @return an array of ItemStacks for the recipe handler.
 * @throws RegistrationError
 * @throws MissingIngredientError
 */
ItemStack[] getItemStackSet() throws RegistrationError, MissingIngredientError;
 
开发者ID:amadornes,项目名称:Framez,代码行数:10,代码来源:IIngredient.java

示例4: bake

import appeng.api.exceptions.RegistrationError; //导入依赖的package包/类
/**
 * Bakes the lists in for faster runtime lookups.
 * @throws MissingIngredientError 
 * @throws RegistrationError 
 */
void bake() throws RegistrationError, MissingIngredientError;
 
开发者ID:amadornes,项目名称:Framez,代码行数:7,代码来源:IIngredient.java

示例5: bake

import appeng.api.exceptions.RegistrationError; //导入依赖的package包/类
/**
 * Bakes the lists in for faster runtime look-ups.
 * @throws MissingIngredientError 
 * @throws RegistrationError 
 */
void bake() throws RegistrationError, MissingIngredientError;
 
开发者ID:austinv11,项目名称:PeripheralsPlusPlus,代码行数:7,代码来源:IIngredient.java

示例6: register

import appeng.api.exceptions.RegistrationError; //导入依赖的package包/类
/**
 * called when all recipes are parsed, and your required to register your recipe.
 *
 * @throws RegistrationError
 * @throws MissingIngredientError
 */
public void register() throws RegistrationError, MissingIngredientError;
 
开发者ID:AgileMods,项目名称:MateriaMuto,代码行数:8,代码来源:ICraftHandler.java

示例7: getItemStack

import appeng.api.exceptions.RegistrationError; //导入依赖的package包/类
/**
 * Acquire a single input stack for the current recipe, if more then one ItemStack is possible a
 * RegistrationError exception will be thrown, ignore these and let the system handle the error.
 *
 * @return a single ItemStack for the recipe handler.
 *
 * @throws RegistrationError
 * @throws MissingIngredientError
 */
ItemStack getItemStack() throws RegistrationError, MissingIngredientError;
 
开发者ID:AgileMods,项目名称:MateriaMuto,代码行数:11,代码来源:IIngredient.java

示例8: getItemStackSet

import appeng.api.exceptions.RegistrationError; //导入依赖的package包/类
/**
 * Acquire a list of all the input stacks for the current recipe, this is for handlers that support
 * multiple inputs per slot.
 *
 * @return an array of ItemStacks for the recipe handler.
 * @throws RegistrationError
 * @throws MissingIngredientError
 */
ItemStack[] getItemStackSet() throws RegistrationError, MissingIngredientError;
 
开发者ID:AgileMods,项目名称:MateriaMuto,代码行数:10,代码来源:IIngredient.java

示例9: bake

import appeng.api.exceptions.RegistrationError; //导入依赖的package包/类
/**
 * Bakes the lists in for faster runtime lookups.
 * @throws MissingIngredientError
 * @throws RegistrationError
 */
void bake() throws RegistrationError, MissingIngredientError;
 
开发者ID:AgileMods,项目名称:MateriaMuto,代码行数:7,代码来源:IIngredient.java

示例10: register

import appeng.api.exceptions.RegistrationError; //导入依赖的package包/类
/**
 * called when all recipes are parsed, and your required to register your recipe.
 *
 * @throws RegistrationError
 * @throws MissingIngredientError
 */
void register() throws RegistrationError, MissingIngredientError;
 
开发者ID:MineMaarten,项目名称:PneumaticCraft,代码行数:8,代码来源:ICraftHandler.java

示例11: getItemStackSet

import appeng.api.exceptions.RegistrationError; //导入依赖的package包/类
/**
 * Acquire a list of all the input stacks for the current recipe, this is for handlers that support
 * multiple inputs per slot.
 *
 * @return an array of ItemStacks for the recipe handler.
 *
 * @throws RegistrationError
 * @throws MissingIngredientError
 */
ItemStack[] getItemStackSet() throws RegistrationError, MissingIngredientError;
 
开发者ID:MineMaarten,项目名称:PneumaticCraft,代码行数:11,代码来源:IIngredient.java

示例12: bake

import appeng.api.exceptions.RegistrationError; //导入依赖的package包/类
/**
 * Bakes the lists in for faster runtime look-ups.
 *
 * @throws MissingIngredientError
 * @throws RegistrationError
 */
void bake() throws RegistrationError, MissingIngredientError;
 
开发者ID:MineMaarten,项目名称:PneumaticCraft,代码行数:8,代码来源:IIngredient.java


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