enterprises.orbital.impl.evexmlapi.eve.CharacterStat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eve-xml-api Show documentation
Show all versions of eve-xml-api Show documentation
Library to interact with EVE XML API servers
package enterprises.orbital.impl.evexmlapi.eve;
public abstract class CharacterStat implements FacWarStat {
private long characterID;
private String characterName;
public long getCharacterID() {
return characterID;
}
public void setCharacterID(
long characterID) {
this.characterID = characterID;
}
public String getCharacterName() {
return characterName;
}
public void setCharacterName(
String characterName) {
this.characterName = characterName;
}
}