AccountEvent.java 767 B

12345678910111213141516171819202122232425262728293031
  1. package eu.tankernn.accounts;
  2. /**
  3. * Describes an event in an account's history.
  4. *
  5. * @author frans
  6. *
  7. */
  8. public class AccountEvent {
  9. public final double balanceChange;
  10. public final String description;
  11. /**
  12. * Creates a new account event.
  13. *
  14. * @param balanceChange The change in account balance.
  15. * @param descriptionFormat
  16. * A string that will be used for a <code>String.format()</code>
  17. * call, along with the absolute balance change value.
  18. */
  19. public AccountEvent(double balanceChange, String descriptionFormat) {
  20. this.balanceChange = balanceChange;
  21. this.description = String.format(descriptionFormat, Math.abs(balanceChange));
  22. }
  23. public String toString() {
  24. return description;
  25. }
  26. }