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

a few more method stubs on TaxonNode

parent 3414ad38
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,23 @@ package biotree;
public class TaxonNode {
public TaxonNode(int taxonId, TaxonType taxonType, String name) {
}
public int getTaxonId() {
return 0;
}
public TaxonType getTaxonType() {
return null;
}
public String getName() {
return "";
}
public void setParent(TaxonNode parent) {
}
......
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