mirror of
https://github.com/Rogiel/l2jserver2
synced 2025-12-11 09:42:54 +00:00
Improves javadoc in more than 190 classes
This commit improves and adds missing javadoc to 196 java files. Now more than 98% of the code is documented.
This commit is contained in:
@@ -47,17 +47,38 @@ public class CoordinateAdapter extends
|
||||
|
||||
}
|
||||
|
||||
public static class CoordinateElement {
|
||||
/**
|
||||
* Internal usage class: class used to read coordinate data from XML file
|
||||
* @author <a href="http://www.rogiel.com">Rogiel</a>
|
||||
*/
|
||||
protected static class CoordinateElement {
|
||||
/**
|
||||
* The x cord
|
||||
*/
|
||||
@XmlAttribute(name = "x")
|
||||
public int x;
|
||||
/**
|
||||
* The y cord
|
||||
*/
|
||||
@XmlAttribute(name = "y")
|
||||
public int y;
|
||||
/**
|
||||
* The z cord
|
||||
*/
|
||||
@XmlAttribute(name = "z")
|
||||
public int z;
|
||||
|
||||
/**
|
||||
* Creates a new empty instance. Created only from JAXB
|
||||
*/
|
||||
protected CoordinateElement() {
|
||||
}
|
||||
|
||||
/**
|
||||
* @param x the x cord
|
||||
* @param y the y cord
|
||||
* @param z the z cord
|
||||
*/
|
||||
public CoordinateElement(int x, int y, int z) {
|
||||
super();
|
||||
this.x = x;
|
||||
|
||||
Reference in New Issue
Block a user