Generic cleanup of warnings, whitespace and style.

This commit is contained in:
Erik Broes
2011-12-25 16:02:30 +01:00
parent d9c22be882
commit dce83b6ce4
257 changed files with 1408 additions and 1152 deletions

View File

@@ -29,6 +29,7 @@ public class Door extends MaterialData implements Directional {
/**
* Check to see if the door is open.
*
* @return true if the door has swung counterclockwise around its hinge.
*/
public boolean isOpen() {
@@ -37,6 +38,7 @@ public class Door extends MaterialData implements Directional {
/**
* Configure this door to be either open or closed;
*
* @param isOpen True to open the door.
*/
public void setOpen(boolean isOpen) {
@@ -52,6 +54,7 @@ public class Door extends MaterialData implements Directional {
/**
* Configure this part of the door to be either the top or the bottom half;
*
* @param isTopHalf True to make it the top half.
*/
public void setTopHalf(boolean isTopHalf) {
@@ -82,6 +85,7 @@ public class Door extends MaterialData implements Directional {
/**
* Set the direction that this door should is facing.
*
* @param face the direction
*/
public void setFacingDirection(BlockFace face) {
@@ -104,6 +108,7 @@ public class Door extends MaterialData implements Directional {
/**
* Get the direction that this door is facing.
*
* @return the direction
*/
public BlockFace getFacing() {