com.beimin.eveapi.model.shared.Standing Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eveapi Show documentation
Show all versions of eveapi Show documentation
Parsers for the eve online api
package com.beimin.eveapi.model.shared;
public class Standing {
private int fromID;
private String fromName;
private double standing;
public void setFromID(int fromID) {
this.fromID = fromID;
}
public void setFromName(String fromName) {
this.fromName = fromName;
}
public void setStanding(double standing) {
this.standing = standing;
}
public int getFromID() {
return this.fromID;
}
public String getFromName() {
return this.fromName;
}
public double getStanding() {
return this.standing;
}
}