Skip to content
Snippets Groups Projects
Commit 158bc106 authored by Christopher Schankula's avatar Christopher Schankula :earth_africa:
Browse files

add Species ADT first draft

parent a6459cb7
No related branches found
No related tags found
No related merge requests found
package biotree;
public class Species {
private final String species;
private final String bClass;
private final String order;
private final String family;
private final String genus;
public Species(String species, String bClass, String order, String family, String genus) {
this.species = species;
this.bClass = bClass;
this.order = order;
this.family = family;
this.genus = genus;
}
public String getSpecies() {
return this.species;
}
public String getBClass() {
return this.bClass;
}
public String getOrder() {
return this.order;
}
public String getFamily() {
return this.family;
}
public String getGenus() {
return this.genus;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment