An Eclipse RCP reimplementation of bgg1tool by Nand. See http://www.nand.it/nandeck/ for the original tool.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

21 行
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. }