View Javadoc

1   package baseCode.bio;
2   
3   import baseCode.dataStructure.OntologyEntry;
4   
5   /***
6    * 
7    *
8    * <hr>
9    * <p>Copyright (c) 2004 Columbia University
10   * @author pavlidis
11   * @version $Id: GOEntry.java,v 1.1 2004/08/04 09:47:44 pavlidis Exp $
12   */
13  public class GOEntry extends OntologyEntry {
14  
15     private String aspect;
16     
17     public GOEntry(String id, String name, String def, String aspect ) {
18        super(id, name, def);
19        this.aspect = aspect;
20     }
21     
22     public void setAspect( String aspect) {
23        this.aspect = aspect;
24     }
25     
26     public String getAspect () {
27        return aspect;
28     }
29     
30  }