enterprises.orbital.impl.evexmlapi.eve.ApiRequirement 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;
import enterprises.orbital.evexmlapi.eve.IRequiredSkill;
public class ApiRequirement implements Detail, IRequiredSkill {
private int typeID;
private int skillLevel;
@Override
public int getTypeID() {
return typeID;
}
public void setTypeID(int typeID) {
this.typeID = typeID;
}
@Override
public int getLevel() {
return skillLevel;
}
public void setSkillLevel(int skillLevel) {
this.skillLevel = skillLevel;
}
@Override
public String toString() {
return "Type: " + typeID + " at level: " + skillLevel;
}
}