[LIB-9] Add SAN, NAG, move number and result PGN tokens
[chesshog.git] / chesshog-format / src / main / java / org / hedgecode / chess / pgn / entity / Moves.java
index c751132..36704a3 100644 (file)
@@ -18,6 +18,8 @@ package org.hedgecode.chess.pgn.entity;
 
 import java.util.List;
 
+import org.hedgecode.chess.ParseException;
+
 /**
  * Moves
  *
@@ -29,8 +31,14 @@ public interface Moves {
 
     List<DetailMove> getMoves();
 
+    Moves parent();
+
     DetailMove nullMove();
 
     DetailMove currentMove();
 
+    void setResult(String result) throws ParseException;
+
+    String result();
+
 }