Update docs

This commit is contained in:
Raoul Van den Berge
2016-07-28 16:24:10 +02:00
parent abf4d7d886
commit 87f815ad7b
3 changed files with 4 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ public interface ICraftingPatternContainer {
/**
* This usually corresponds to the amount of speed upgrades in a crafter.
*
* @return The speed of this pattern
* @return The speed of this container
*/
int getSpeed();

View File

@@ -3,7 +3,7 @@ package refinedstorage.api.network;
/**
* Flags for knowing what extract action the player is performing, these can be combined.
*/
public class GridExtractFlags {
public final class GridExtractFlags {
public static final int EXTRACT_HALF = 1;
public static final int EXTRACT_SINGLE = 2;
public static final int EXTRACT_SHIFT = 4;

View File

@@ -37,7 +37,7 @@ public interface INetworkNode {
/**
* Called when the connection state of this node changes.
* This is also called when redstone mode is updated, as opposed to {@link INetworkNode#onConnected(INetworkMaster)} and {@link INetworkNode#onDisconnected()}.
* This is also called when redstone mode is updated, as opposed to {@link INetworkNode#onConnected(INetworkMaster)} and {@link INetworkNode#onDisconnected(INetworkMaster)}.
*
* @param network The network
* @param state The state
@@ -50,7 +50,7 @@ public interface INetworkNode {
boolean isConnected();
/**
* @return If {@link INetworkNode#canUpdate()} can get called, typically checks for connection status and redstone mode
* @return If {@link INetworkNode#updateNode()} can get called, typically checks for connection status and redstone mode
*/
boolean canUpdate();