[LIB-9] Set of entities for PGN parsing and formatting
[chesshog.git] / chesshog-format / src / main / java / org / hedgecode / chess / pgn / entity / DetailMove.java
1 /*
2  * Copyright (c) 2018-2020. Developed by Hedgecode.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.hedgecode.chess.pgn.entity;
18
19 import java.util.ArrayList;
20 import java.util.List;
21
22 /**
23  * DetailMove
24  *
25  * @author Dmitry Samoshin aka gotty
26  */
27 public class DetailMove implements Move {
28
29     private int ply;
30     private String move;
31
32     private List<String> comments = new ArrayList<>();
33     private List<Variation> variations = new ArrayList<>();
34
35     public DetailMove(int ply, String move) {
36         this.ply = ply;
37         this.move = move;
38     }
39
40     @Override
41     public int ply() {
42         return ply;
43     }
44
45     @Override
46     public String move() {
47         return move;
48     }
49
50     public void addComment(String comment) {
51         comments.add(comment);
52     }
53
54     public void addVariation(Variation variation) {
55         variations.add(variation);
56     }
57
58     public List<String> comments() {
59         return comments;
60     }
61
62     public List<Variation> variations() {
63         return variations;
64     }
65
66 }