Sync with L2jServer HighFive Mar 1st 2015.

This commit is contained in:
mobius
2015-03-01 22:48:14 +00:00
parent f14af24b41
commit 6fa0ed56e3
116 changed files with 971 additions and 676 deletions

View File

@ -32,9 +32,9 @@ public final class ClassInfo
/**
* Constructor for ClassInfo.
* @param classId the class Id.
* @param className the in game class name.
* @param parentClassId the parent class for the given {@code classId}.
* @param classId the class ID
* @param className the in game class name
* @param parentClassId the parent class for the given {@code classId}
*/
public ClassInfo(ClassId classId, String className, ClassId parentClassId)
{
@ -44,7 +44,7 @@ public final class ClassInfo
}
/**
* @return the class Id.
* @return the class ID
*/
public ClassId getClassId()
{
@ -52,7 +52,7 @@ public final class ClassInfo
}
/**
* @return the hardcoded in-game class name.
* @return the hardcoded in-game class name
*/
public String getClassName()
{
@ -60,7 +60,7 @@ public final class ClassInfo
}
/**
* @return the class client Id.
* @return the class client ID
*/
private int getClassClientId()
{
@ -85,7 +85,7 @@ public final class ClassInfo
}
/**
* @return the class client Id formatted to be displayed on a HTML.
* @return the class client ID formatted to be displayed on a HTML.
*/
public String getClientCode()
{
@ -93,7 +93,7 @@ public final class ClassInfo
}
/**
* @return the escaped class client Id formatted to be displayed on a HTML.
* @return the escaped class client ID formatted to be displayed on a HTML
*/
public String getEscapedClientCode()
{
@ -101,7 +101,7 @@ public final class ClassInfo
}
/**
* @return the parent class Id.
* @return the parent class ID
*/
public ClassId getParentClassId()
{