An Eclipse RCP reimplementation of bgg1tool by Nand. See http://www.nand.it/nandeck/ for the original tool.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
303B

  1. package xyz.veronie.bgg.data;
  2. public enum ResultAction {
  3. ADD("add"),
  4. REP("replace"),
  5. SUB("subtract"),
  6. AND("and"),
  7. MIS("mis");
  8. private String name;
  9. private ResultAction(String name) {
  10. this.name = name;
  11. }
  12. @Override
  13. public String toString() {
  14. return this.name;
  15. }
  16. }