Cleaned up documentation, added lacking Java annotations.

This commit is contained in:
sk89q
2011-02-18 15:49:50 -08:00
parent e5a25496b2
commit e94c1d4874
49 changed files with 269 additions and 140 deletions

View File

@@ -40,7 +40,7 @@ public class ClipboardPattern implements Pattern {
/**
* Construct the object.
*
* @param blockType
* @param clipboard
*/
public ClipboardPattern(CuboidClipboard clipboard) {
this.clipboard = clipboard;

View File

@@ -43,7 +43,7 @@ public class RandomFillPattern implements Pattern {
/**
* Construct the object.
*
* @param blockType
* @param blocks
*/
public RandomFillPattern(List<BlockChance> blocks) {
double max = 0;

View File

@@ -36,7 +36,7 @@ public class SingleBlockPattern implements Pattern {
/**
* Construct the object.
*
* @param blockType
* @param block
*/
public SingleBlockPattern(BaseBlock block) {
this.block = block;