view src/de/mpiwg/anteater/species/scientific/ScientificName.java @ 4:dcc35f89dce3

include linneaus findings
author jdamerow
date Thu, 25 Oct 2012 15:25:08 -0700
parents 036535fcd179
children
line wrap: on
line source

package de.mpiwg.anteater.species.scientific;

import de.mpiwg.anteater.core.Finding;

public class ScientificName extends Finding {

	private String scientificName;
	private String identifiedName;
	private String ncbiId;
	
	public void setScientificName(String scientificName) {
		this.scientificName = scientificName;
	}
	public String getScientificName() {
		return scientificName;
	}
	public void setIdentifiedName(String identifiedName) {
		this.identifiedName = identifiedName;
	}
	public String getIdentifiedName() {
		return identifiedName;
	}
	
	public void setNcbiId(String ncbiId) {
		this.ncbiId = ncbiId;
	}
	public String getNcbiId() {
		return ncbiId;
	}
	
}