Code style changes.

This commit is contained in:
MobiusDev
2016-04-26 19:21:19 +00:00
parent 6a13705766
commit fc070c9238
768 changed files with 3338 additions and 4252 deletions

View File

@@ -28,19 +28,19 @@ public interface IPositionable extends ILocational
* Sets the X coordinate of this object.
* @param x the new X coordinate
*/
public void setX(int x);
void setX(int x);
/**
* Sets the Y coordinate of this object.
* @param y the new Y coordinate
*/
public void setY(int y);
void setY(int y);
/**
* Sets the Z coordinate of this object.
* @param z the new Z coordinate
*/
public void setZ(int z);
void setZ(int z);
/**
* Sets all three coordinates of this object.
@@ -48,29 +48,29 @@ public interface IPositionable extends ILocational
* @param y the new Y coordinate
* @param z the new Z coordinate
*/
public void setXYZ(int x, int y, int z);
void setXYZ(int x, int y, int z);
/**
* Sets all three coordinates of this object.
* @param loc the object whose coordinates to use
*/
public void setXYZ(ILocational loc);
void setXYZ(ILocational loc);
/**
* Sets the heading of this object.
* @param heading the new heading
*/
public void setHeading(int heading);
void setHeading(int heading);
/**
* Changes the instance zone ID of this object.
* @param instanceId the ID of the instance zone to put this object in (0 - not in any instance)
*/
public void setInstanceId(int instanceId);
void setInstanceId(int instanceId);
/**
* Changes the location of this object.
* @param loc the new location
*/
public void setLocation(Location loc);
void setLocation(Location loc);
}