1 /*--------------------------------------------------------------------------
2 * Copyright 2008 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 // Species.java
20 // Since: Feb 6, 2008
21 //
22 // $URL$
23 // $Author$
24 //--------------------------------------
25 package org.utgenome.gwt.utgb.client.bean.track;
26
27 import com.google.gwt.user.client.rpc.IsSerializable;
28
29 /**
30 * Species available in the track
31 *
32 * @author leo
33 *
34 */
35 public class Species implements IsSerializable {
36 String name = "";
37 String revision = "";
38
39 public Species() {
40 }
41
42 public Species(String name, String revision) {
43 this.name = name;
44 this.revision = revision;
45 }
46
47 public String getName() {
48 return name;
49 }
50 public void setName(String name) {
51 this.name = name;
52 }
53 public String getRevision() {
54 return revision;
55 }
56 public void setRevision(String revision) {
57 this.revision = revision;
58 }
59
60
61 }
62
63
64
65