View Javadoc

1   /*
2   Copyright (c) 2005 The European Bioinformatics Institute, and others.
3   All rights reserved. Please see the file LICENSE
4   in the root directory of this distribution.
5   */
6   package uk.ac.ebi.intenz.tools.sib.translator.helper;
7   
8   
9   /**
10   * DataHolder holds data for the tests.
11   *
12   * @author P. de Matos
13   * @version $id 24-Jun-2005 13:20:50
14   *          <p/>
15   *          History:
16   *          Developer          Date              Description<br>
17   *          P. de Matos        24-Jun-2005           Created class<br>
18   */
19  public class DataHolder {
20  
21     private String EC;
22     private String intenzData;
23     private String enzymeData;
24  
25     public DataHolder (String EC, String intenzData, String enzymeData) {
26        this.EC = EC;
27        this.intenzData = intenzData;
28        this.enzymeData = enzymeData;
29     }
30  
31     public String getEC () {
32        return EC;
33     }
34  
35     public String getIntenzData () {
36        return intenzData;
37     }
38  
39     public String getEnzymeData () {
40        return enzymeData;
41     }
42  }