Examples of ItemListIgnoreCrafting


Examples of appeng.util.inv.ItemListIgnoreCrafting

    if ( monitor != null )
      monitor.removeListener( this );

    monitor = null;
    IItemList<T> before = getInternal() == null ? channel.createList() : getInternal()
        .getAvailableItems( new ItemListIgnoreCrafting( channel.createList() ) );

    super.setInternal( i );
    if ( i instanceof IMEMonitor )
      monitor = (IMEMonitor<T>) i;

    IItemList<T> after = getInternal() == null ? channel.createList() : getInternal()
        .getAvailableItems( new ItemListIgnoreCrafting( channel.createList() ) );

    if ( monitor != null )
      monitor.addListener( this, monitor );

    Platform.postListChanges( before, after, this, changeSource );
View Full Code Here

Examples of appeng.util.inv.ItemListIgnoreCrafting

  }

  @Override
  public IItemList<T> getAvailableItems(IItemList out)
  {
    super.getAvailableItems( new ItemListIgnoreCrafting( out ) );
    return out;
  }
View Full Code Here

Examples of appeng.util.inv.ItemListIgnoreCrafting

  public IItemList<T> getStorageList()
  {
    if ( monitor == null )
    {
      IItemList<T> out = channel.createList();
      getInternal().getAvailableItems( new ItemListIgnoreCrafting( out ) );
      return out;
    }
    return monitor.getStorageList();
  }
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.