Update docs
This commit is contained in:
@@ -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();
|
||||
|
||||
|
@@ -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;
|
||||
|
@@ -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();
|
||||
|
||||
|
Reference in New Issue
Block a user