This commit is contained in:
Raoul Van den Berge
2016-08-11 12:39:49 +02:00
parent 398430c6e4
commit 340587d2e3
2 changed files with 3 additions and 3 deletions

View File

@@ -5,7 +5,7 @@ import refinedstorage.api.storage.item.IItemStorage;
import java.util.List;
/**
* Represents a tile that provides storage to the network. Implement this on a tile that implements {@link refinedstorage.api.network.INetworkNode}.
* Represents a tile that provides storage to the network. Implement this on a tile that is a {@link refinedstorage.api.network.INetworkNode}.
*/
public interface IStorageProvider {
/**

View File

@@ -19,7 +19,7 @@ public interface IItemStorage {
List<ItemStack> getItems();
/**
* Inserts an item to the storage network.
* Inserts an item to this storage.
*
* @param stack The stack prototype to insert, do NOT modify
* @param size The amount of that prototype that has to be inserted
@@ -30,7 +30,7 @@ public interface IItemStorage {
ItemStack insertItem(@Nonnull ItemStack stack, int size, boolean simulate);
/**
* Extracts an item from the storage network.
* Extracts an item from this storage.
* <p>
* If the stack we found in the system is smaller than the requested size, return the stack anyway.
* For example: if this method is called for dirt (64x) while there is only dirt (32x), return the dirt (32x) anyway.