Clean up some javadoc spam
Still need to figure out why delombok is priting an error for every non-BM import. It was apparently fixed in `gradle-lombok` 1.5 but it seems to have returned.
This commit is contained in:
parent
fe18be56fd
commit
126d17b55d
11 changed files with 175 additions and 177 deletions
|
@ -52,8 +52,9 @@ public class DefaultItemFilter implements IItemFilter
|
|||
* managing receives an ItemStack. Should only really be called by the Input
|
||||
* filter via it's transfer method.
|
||||
*
|
||||
* @param stack
|
||||
* -
|
||||
* @param inputStack
|
||||
* - The stack to transfer
|
||||
*
|
||||
* @return - The remainder of the stack after it has been absorbed into the
|
||||
* inventory.
|
||||
*/
|
||||
|
|
|
@ -8,27 +8,28 @@ import net.minecraft.util.EnumFacing;
|
|||
|
||||
public interface IItemFilter
|
||||
{
|
||||
public void initializeFilter(List<ItemStack> filteredList, IInventory inventory, EnumFacing side, boolean isFilterOutput);
|
||||
void initializeFilter(List<ItemStack> filteredList, IInventory inventory, EnumFacing side, boolean isFilterOutput);
|
||||
|
||||
/**
|
||||
* This method is only called when the output inventory this filter is
|
||||
* managing receives an ItemStack. Should only really be called by the Input
|
||||
* filter via it's transfer method.
|
||||
*
|
||||
* @param stack
|
||||
* -
|
||||
* @param inputStack
|
||||
* - The stack to filter
|
||||
*
|
||||
* @return - The remainder of the stack after it has been absorbed into the
|
||||
* inventory.
|
||||
*/
|
||||
public ItemStack transferStackThroughOutputFilter(ItemStack inputStack);
|
||||
ItemStack transferStackThroughOutputFilter(ItemStack inputStack);
|
||||
|
||||
/**
|
||||
* This method is only called on an input filter to transfer ItemStacks from
|
||||
* the input inventory to the output inventory.
|
||||
*/
|
||||
public int transferThroughInputFilter(IItemFilter outputFilter, int maxTransfer);
|
||||
int transferThroughInputFilter(IItemFilter outputFilter, int maxTransfer);
|
||||
|
||||
public boolean doesStackMatchFilter(ItemStack testStack);
|
||||
boolean doesStackMatchFilter(ItemStack testStack);
|
||||
|
||||
public boolean doStacksMatch(ItemStack filterStack, ItemStack testStack);
|
||||
boolean doStacksMatch(ItemStack filterStack, ItemStack testStack);
|
||||
}
|
||||
|
|
|
@ -162,8 +162,8 @@ public class TestItemFilter implements IItemFilter
|
|||
* managing receives an ItemStack. Should only really be called by the Input
|
||||
* filter via it's transfer method.
|
||||
*
|
||||
* @param stack
|
||||
* -
|
||||
* @param inputStack
|
||||
* - The stack to transfer
|
||||
* @return - The remainder of the stack after it has been absorbed into the
|
||||
* inventory.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue