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

function stubs for TaxonNode

parent ef6b0598
No related branches found
No related tags found
No related merge requests found
package biotree;
public class TaxonNode {
public void setParent(TaxonNode parent) {
}
public void addChild(TaxonNode child) {
}
public TaxonNode getParent() {
return null;
}
public TaxonNode[] getChildren() {
return null;
}
public int getCount() {
return 0;
}
public void incCount() {
}
}
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