X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2FNewickFile.java;h=765ea9520a9a1295bc40756aab07497593dfbd59;hb=6e5cc965552fadac700baa9b076777697f66386a;hp=9c91c135c93ef931c669e72bfa2f195b04856db2;hpb=7ab5d6b0ba5fec1ea4a4239e79c476d841622485;p=jalview.git diff --git a/src/jalview/io/NewickFile.java b/src/jalview/io/NewickFile.java index 9c91c13..765ea95 100755 --- a/src/jalview/io/NewickFile.java +++ b/src/jalview/io/NewickFile.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2) - * Copyright (C) 2014 The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors * * This file is part of Jalview. * @@ -26,10 +26,14 @@ // TODO: Extended SequenceNodeI to hold parsed NHX strings package jalview.io; -import java.io.*; -import java.util.StringTokenizer; +import jalview.datamodel.SequenceNode; +import jalview.util.MessageManager; -import jalview.datamodel.*; +import java.io.BufferedReader; +import java.io.File; +import java.io.FileReader; +import java.io.IOException; +import java.util.StringTokenizer; /** * Parse a new hanpshire style tree Caveats: NHX files are NOT supported and the @@ -106,7 +110,7 @@ public class NewickFile extends FileParse */ public NewickFile(String inStr) throws IOException { - super(inStr, "Paste"); + super(inStr, DataSourceType.PASTE); } /** @@ -114,15 +118,16 @@ public class NewickFile extends FileParse * * @param inFile * DOCUMENT ME! - * @param type + * @param protocol * DOCUMENT ME! * * @throws IOException * DOCUMENT ME! */ - public NewickFile(String inFile, String type) throws IOException + public NewickFile(String inFile, DataSourceType protocol) + throws IOException { - super(inFile, type); + super(inFile, protocol); } public NewickFile(FileParse source) throws IOException @@ -611,11 +616,14 @@ public class NewickFile extends FileParse if (Error != null) { - throw (new IOException("NewickFile: " + Error + "\n")); + throw (new IOException(MessageManager.formatMessage( + "exception.newfile", new String[] { Error.toString() }))); } if (root == null) { - throw (new IOException("NewickFile: No Tree read in\n")); + throw (new IOException(MessageManager.formatMessage( + "exception.newfile", new String[] { MessageManager + .getString("label.no_tree_read_in") }))); } // THe next line is failing for topali trees - not sure why yet. if // (root.right()!=null && root.isDummy()) @@ -959,7 +967,7 @@ public class NewickFile extends FileParse treefile.close(); System.out.println("Read file :\n"); - NewickFile trf = new NewickFile(args[0], "File"); + NewickFile trf = new NewickFile(args[0], DataSourceType.FILE); trf.parse(); System.out.println("Original file :\n");