X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=forester%2Fjava%2Fsrc%2Forg%2Fforester%2Fphylogeny%2FPhylogenyNode.java;h=05876e7eae537ca1d4400b5cee3ceef794d27eff;hb=f8ecfc1d254f7f413ee5c47fbb012b609f7f4fd1;hp=b41da60b85c4f174b128a77b77875516724eebf2;hpb=03e51d179caedf757b09e2872f9500318bd85a53;p=jalview.git diff --git a/forester/java/src/org/forester/phylogeny/PhylogenyNode.java b/forester/java/src/org/forester/phylogeny/PhylogenyNode.java index b41da60..05876e7 100644 --- a/forester/java/src/org/forester/phylogeny/PhylogenyNode.java +++ b/forester/java/src/org/forester/phylogeny/PhylogenyNode.java @@ -23,7 +23,7 @@ // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA // // Contact: phylosoft @ gmail . com -// WWW: www.phylosoft.org/forester +// WWW: https://sites.google.com/site/cmzmasek/home/software/forester package org.forester.phylogeny; @@ -47,11 +47,14 @@ import org.forester.util.ForesterUtil; * to unexpected behavior. * */ -public final class PhylogenyNode implements PhylogenyNodeI, Comparable { +public final class PhylogenyNode implements Comparable { - private static int _node_count = 0; + public enum NH_CONVERSION_SUPPORT_VALUE_STYLE { + NONE, IN_SQUARE_BRACKETS, AS_INTERNAL_NODE_NAMES; + } + private static long NODE_COUNT = 0; private byte _indicator; - private int _id; + private long _id; private int _sum_ext_nodes; private float _x; private float _y; @@ -69,7 +72,6 @@ public final class PhylogenyNode implements PhylogenyNodeI, Comparable