aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/tileentity/IRedstoneReceiver.java
diff options
context:
space:
mode:
authorShawn Buckley <shawntbuckley@gmail.com>2015-10-21 22:06:25 -0400
committerShawn Buckley <shawntbuckley@gmail.com>2015-10-21 22:06:25 -0400
commit9353aa711b1d750ff945acdfed2d3b956291b615 (patch)
treed6ca62ab093dede52afef0d82ac29d32c56fb29b /src/main/java/gregtech/api/interfaces/tileentity/IRedstoneReceiver.java
parent445e6c3f25714ecf15c07dcd3462375d65b6dc92 (diff)
downloadGT5-Unofficial-9353aa711b1d750ff945acdfed2d3b956291b615.tar.gz
GT5-Unofficial-9353aa711b1d750ff945acdfed2d3b956291b615.tar.bz2
GT5-Unofficial-9353aa711b1d750ff945acdfed2d3b956291b615.zip
Reformat code
Diffstat (limited to 'src/main/java/gregtech/api/interfaces/tileentity/IRedstoneReceiver.java')
-rw-r--r--src/main/java/gregtech/api/interfaces/tileentity/IRedstoneReceiver.java40
1 files changed, 20 insertions, 20 deletions
diff --git a/src/main/java/gregtech/api/interfaces/tileentity/IRedstoneReceiver.java b/src/main/java/gregtech/api/interfaces/tileentity/IRedstoneReceiver.java
index f4c63c803e..f5b0f76bad 100644
--- a/src/main/java/gregtech/api/interfaces/tileentity/IRedstoneReceiver.java
+++ b/src/main/java/gregtech/api/interfaces/tileentity/IRedstoneReceiver.java
@@ -4,26 +4,26 @@ package gregtech.api.interfaces.tileentity;
* This File has just internal Information about the Redstone State of a TileEntity
*/
public interface IRedstoneReceiver extends IHasWorldObjectAndCoords {
- /**
- * gets the Redstone Level of the TileEntity to the given Input Side
- *
- * Do not use this if ICoverable is implemented. ICoverable has @getInternalInputRedstoneSignal for Machine internal Input Redstone
- * This returns the true incoming Redstone Signal. Only Cover Behaviors should check it, not MetaTileEntities.
- */
- public byte getInputRedstoneSignal(byte aSide);
-
- /**
- * gets the strongest Redstone Level the TileEntity receives
- */
- public byte getStrongestRedstone();
-
- /**
- * gets if the TileEntity receives Redstone
- */
+ /**
+ * gets the Redstone Level of the TileEntity to the given Input Side
+ * <p/>
+ * Do not use this if ICoverable is implemented. ICoverable has @getInternalInputRedstoneSignal for Machine internal Input Redstone
+ * This returns the true incoming Redstone Signal. Only Cover Behaviors should check it, not MetaTileEntities.
+ */
+ public byte getInputRedstoneSignal(byte aSide);
+
+ /**
+ * gets the strongest Redstone Level the TileEntity receives
+ */
+ public byte getStrongestRedstone();
+
+ /**
+ * gets if the TileEntity receives Redstone
+ */
public boolean getRedstone();
-
- /**
- * gets if the TileEntity receives Redstone at this Side
- */
+
+ /**
+ * gets if the TileEntity receives Redstone at this Side
+ */
public boolean getRedstone(byte aSide);
} \ No newline at end of file