![JAR search and dependency download from the Maven repository](/logo.png)
enterprises.orbital.impl.evexmlapi.eve.ApiBonus Maven / Gradle / Ivy
package enterprises.orbital.impl.evexmlapi.eve;
import enterprises.orbital.evexmlapi.eve.IBonus;
public class ApiBonus implements Detail, IBonus {
private String bonusType;
private String bonusValue;
@Override
public String getBonusType() {
return bonusType;
}
public void setBonusType(String bonusType) {
this.bonusType = bonusType;
}
@Override
public String getBonusValue() {
return bonusValue;
}
public void setBonusValue(String bonusValue) {
this.bonusValue = bonusValue;
}
@Override
public String toString() {
return bonusType + " " + bonusValue + "\n";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy