1   /*
2    * To change this license header, choose License Headers in Project Properties.
3    * To change this template file, choose Tools | Templates
4    * and open the template in the editor.
5    */
6   package nl.dedicon.pipeline.braille.model;
7   
8   import java.util.List;
9   
10  /**
11   * A symbol from the symbols list
12   * 
13   * @author Paul Rambags
14   */
15  public class Symbol {
16      
17      private String character;
18      private String language;
19      private List<Replace> replaces;
20  
21      public String getCharacter() {
22          return character;
23      }
24  
25      public void setCharacter(String character) {
26          this.character = character;
27      }
28  
29      public String getLanguage() {
30          return language;
31      }
32  
33      public void setLanguage(String language) {
34          this.language = language;
35      }
36  
37      public List<Replace> getReplaces() {
38          return replaces;
39      }
40  
41      public void setReplaces(List<Replace> replaces) {
42          this.replaces = replaces;
43      }
44  }