view src/de/mpiwg/anteater/species/scientific/ScientificName.java @ 0:036535fcd179

anteater
author jdamerow
date Fri, 14 Sep 2012 10:30:43 +0200
parents
children dcc35f89dce3
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;
	
	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;
	}
	
	
}