View Javadoc

1   /**************************************************************************
2   Copyright 2005 Webstersmalley
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   * Created on 28-Aug-2005
18   */
19  package com.webstersmalley.chessweb.model;
20  
21  import java.util.ArrayList;
22  import java.util.List;
23  
24  /***
25   * A history of moves.
26   * @author Matthew Smalley
27   */
28  public final class MoveHistory {
29  
30      /*** The list of historic moves. **/
31      private List moves;
32      
33      /***
34       * Constructor for the move history.
35       * Creates a blank move list.
36       *
37       */
38      public MoveHistory() {
39          moves = new ArrayList();
40      }
41      
42      /***
43       * Adds a move to the history.
44       * @param move the move.
45       */
46      public void addMove(final Move move) {
47          moves.add(move);
48      }
49      
50      /***
51       * Gets the moves.
52       * @return the moves. 
53       */
54      public List getMoves() {
55          return moves;
56      }
57  }