All Downloads are FREE. Search and download functionalities are using the official Maven repository.

enterprises.orbital.impl.evexmlapi.eve.ApiBonus Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy