Examples of CCFilterInventory


Examples of logisticspipes.proxy.computers.objects.CCFilterInventory

    Object wrapped = input;
    if(specialMappings.containsKey(input.getClass())) {
      wrapped = specialMappings.get(input.getClass()).getTypeFor(input);
    } else if(input instanceof ItemIdentifierInventory) {
      if(((ItemIdentifierInventory)input).getInventoryStackLimit() == 1) {
        wrapped = new CCFilterInventory((ItemIdentifierInventory)input);
      } else {
        wrapped = new CCItemIdentifierInventory((ItemIdentifierInventory)input);
      }
    }
    CCWrapperInformation info = getWrapperInformation(wrapped.getClass());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.