|
|||||||||||||||||||
| 30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| GOEntry.java | - | 75% | 66.7% | 71.4% |
|
||||||||||||||
| 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 | 77 |
public GOEntry(String id, String name, String def, String aspect ) {
|
| 18 | 77 |
super(id, name, def);
|
| 19 | 77 |
this.aspect = aspect;
|
| 20 |
} |
|
| 21 |
|
|
| 22 | 68 |
public void setAspect( String aspect) { |
| 23 | 68 |
this.aspect = aspect;
|
| 24 |
} |
|
| 25 |
|
|
| 26 | 0 |
public String getAspect () {
|
| 27 | 0 |
return aspect;
|
| 28 |
} |
|
| 29 |
|
|
| 30 |
} |
|
| 31 |
|
|
||||||||||