View Javadoc

1   /*--------------------------------------------------------------------------
2    *  Copyright 2007 utgenome.org
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  // utgb-core Project
18  //
19  // LegacyTrackInfo.java
20  // Since: Oct 10, 2007
21  //
22  // $URL$ 
23  // $Author$
24  //--------------------------------------
25  package org.utgenome.gwt.utgb.client.track.bean;
26  
27  import java.io.Serializable;
28  
29  public class LegacyTrackInformation implements Serializable {
30  	/**
31  	 * 
32  	 */
33  	private static final long serialVersionUID = 1L;
34  	private String descriptionXML = "";
35  	private String name = "Legacy Track";
36  	private String docURL = "";
37  	private String species = "";
38  	private String revision = "";
39  
40  	public LegacyTrackInformation() {
41  	}
42  
43  	public String getDescriptionXML() {
44  		return descriptionXML;
45  	}
46  
47  	public void setDescriptionXML(String descriptionXML) {
48  		this.descriptionXML = descriptionXML;
49  	}
50  
51  	public String getName() {
52  		return name;
53  	}
54  
55  	public void setName(String name) {
56  		this.name = name;
57  	}
58  
59  	public String getDocURL() {
60  		return docURL;
61  	}
62  
63  	public void setDocURL(String docURL) {
64  		this.docURL = docURL;
65  	}
66  
67  	public String getSpecies() {
68  		return species;
69  	}
70  
71  	public void setSpecies(String species) {
72  		this.species = species;
73  	}
74  
75  	public String getRevision() {
76  		return revision;
77  	}
78  
79  	public void setRevision(String revision) {
80  		this.revision = revision;
81  	}
82  
83  }