Fixing internal javadoc

This commit is contained in:
thatsIch
2014-09-27 23:17:47 +02:00
parent ab9f67df5a
commit 4088cca5ad
25 changed files with 141 additions and 143 deletions
+5 -5
View File
@@ -29,8 +29,8 @@ public class GridStorage implements IGridStorage
/**
* for use with world settings
*
* @param id
* @param gss
* @param id ID of grid storage
* @param gss grid storage search
*/
public GridStorage(long id, GridStorageSearch gss) {
myID = id;
@@ -41,9 +41,9 @@ public class GridStorage implements IGridStorage
/**
* for use with world settings
*
* @param input
* @param id
* @param gss
* @param input array of bytes string
* @param id ID of grid storage
* @param gss grid storage search
*/
public GridStorage(String input, long id, GridStorageSearch gss) {
myID = id;
@@ -11,7 +11,7 @@ public class GridStorageSearch
/**
* for use with the world settings
*
* @param id
* @param id ID of grid storage search
*/
public GridStorageSearch(long id) {
this.id = id;
@@ -19,28 +19,28 @@ public abstract class MBCalculator
/**
* check if the tile entities are correct for the structure.
*
* @param te
* @return
* @param te to be checked tile entity
* @return true if tile entity is valid for structure
*/
public abstract boolean isValidTile(TileEntity te);
/**
* construct the correct cluster, usually very simple.
*
* @param w
* @param min
* @param max
* @return
* @param w world
* @param min min world coord
* @param max max world coord
* @return created cluster
*/
public abstract IAECluster createCluster(World w, WorldCoord min, WorldCoord max);
/**
* configure the mutli-block tiles, most of the important stuff is in here.
*
* @param c
* @param w
* @param min
* @param max
* @param c updated cluster
* @param w in world
* @param min min world coord
* @param max max world coord
*/
public abstract void updateTiles(IAECluster c, World w, WorldCoord min, WorldCoord max);
@@ -52,9 +52,9 @@ public abstract class MBCalculator
/**
* verify if the structure is the correct dimensions, or size
*
* @param min
* @param max
* @return
* @param min min world coord
* @param max max world coord
* @return true if structure has correct dimensions or size
*/
public abstract boolean checkMultiblockScale(WorldCoord min, WorldCoord max);
@@ -189,8 +189,8 @@ public class AENetworkProxy implements IGridBlock
/**
* short cut!
*
* @return
* @throws GridAccessException
* @return grid of node
* @throws GridAccessException of node or grid is null
*/
public IGrid getGrid() throws GridAccessException
{
@@ -36,8 +36,6 @@ public interface IPathItem
/**
* channels are done, wrap it up.
*
* @return
*/
void finalizeChannels();