Example usage for net.minecraftforge.items ItemStackHandler subclass-usage

List of usage examples for net.minecraftforge.items ItemStackHandler subclass-usage

Introduction

In this page you can find the example usage for net.minecraftforge.items ItemStackHandler subclass-usage.

Usage

From source file blusunrize.immersiveengineering.common.util.inventory.IEItemStackHandler.java

public class IEItemStackHandler extends ItemStackHandler implements ICapabilityProvider {
    private boolean first = true;
    private ItemStack stack;

    public IEItemStackHandler(ItemStack stack) {
        super();

From source file com.gmail.socraticphoenix.forge.randore.crafting.forge.SelectiveItemStackHandler.java

public class SelectiveItemStackHandler extends ItemStackHandler {
    private Predicate<ItemStack> acceptIn;

    public SelectiveItemStackHandler(Predicate<ItemStack> acceptIn) {
        this.acceptIn = acceptIn;
    }

From source file de.ellpeck.actuallyadditions.mod.util.ItemStackHandlerAA.java

/**
 * The Actually Additions variant of ItemStackHandler.  Provides methods to disallow add/removal based on automation context.  Defaults to thinking operations are performed by automation.
 * @author Shadows
 */
public class ItemStackHandlerAA extends ItemStackHandler {

From source file de.ellpeck.actuallyadditions.mod.util.ItemStackHandlerCustom.java

public class ItemStackHandlerCustom extends ItemStackHandler {

    private boolean tempIgnoreConditions;

    public ItemStackHandlerCustom(int slots) {
        super(slots);

From source file de.sanandrew.mods.turretmod.tileentity.electrolytegen.ElectrolyteContainerInventoryHandler.java

final class ElectrolyteContainerInventoryHandler extends ItemStackHandler {
    private final ElectrolyteInventoryHandler parentHandler;

    public ElectrolyteContainerInventoryHandler(ElectrolyteInventoryHandler handler) {
        super(handler.getStacksArray());
        this.parentHandler = handler;

From source file de.sanandrew.mods.turretmod.tileentity.electrolytegen.ElectrolyteInventoryHandler.java

final class ElectrolyteInventoryHandler extends ItemStackHandler {
    private final TileEntityElectrolyteGenerator tile;

    public ElectrolyteInventoryHandler(TileEntityElectrolyteGenerator tile) {
        super(14);
        this.tile = tile;