X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=forester%2Fjava%2Fsrc%2Forg%2Fforester%2Farchaeopteryx%2FNodePanel.java;h=153d9491c91f2aacb2c4b6e1c8287da4a972c6e3;hb=d83c580c4105be2b7ae25357e067d4b7ea42c5e3;hp=ff6e275fb70a4d0c0caad8b5a8b8534e8583c348;hpb=ccf4c584032d16ed0ed8d0678f01305887724f96;p=jalview.git diff --git a/forester/java/src/org/forester/archaeopteryx/NodePanel.java b/forester/java/src/org/forester/archaeopteryx/NodePanel.java index ff6e275..153d949 100644 --- a/forester/java/src/org/forester/archaeopteryx/NodePanel.java +++ b/forester/java/src/org/forester/archaeopteryx/NodePanel.java @@ -5,7 +5,7 @@ // Copyright (C) 2008-2009 Christian M. Zmasek // Copyright (C) 2008-2009 Burnham Institute for Medical Research // All rights reserved -// +// // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either @@ -15,7 +15,7 @@ // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. -// +// // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA @@ -213,8 +213,9 @@ class NodePanel extends JPanel implements TreeSelectionListener { top.add( category ); addSubelement( category, NODE_NAME, phylogeny_node.getName() ); if ( phylogeny_node.getDistanceToParent() != PhylogenyNode.DISTANCE_DEFAULT ) { - addSubelement( category, NODE_BRANCH_LENGTH, ForesterUtil.FORMATTER_6.format( phylogeny_node - .getDistanceToParent() ) ); + addSubelement( category, + NODE_BRANCH_LENGTH, + ForesterUtil.FORMATTER_6.format( phylogeny_node.getDistanceToParent() ) ); } if ( phylogeny_node.getBranchData().isHasConfidences() ) { for( final PhylogenyData conf : phylogeny_node.getBranchData().getConfidences() ) { @@ -223,8 +224,9 @@ class NodePanel extends JPanel implements TreeSelectionListener { } if ( !phylogeny_node.isExternal() ) { addSubelement( category, "Children", String.valueOf( phylogeny_node.getNumberOfDescendants() ) ); - addSubelement( category, "External children", String.valueOf( phylogeny_node.getAllExternalDescendants() - .size() ) ); + addSubelement( category, + "External children", + String.valueOf( phylogeny_node.getAllExternalDescendants().size() ) ); final SortedMap distinct_tax = PhylogenyMethods .obtainDistinctTaxonomyCounts( phylogeny_node ); if ( distinct_tax != null ) {