(String string)
| 720 | } |
| 721 | |
| 722 | public boolean readFromString(String string) throws IOException { |
| 723 | boolean isNexus = string.substring(0, 80).toUpperCase().contains("#NEXUS"); |
| 724 | return readData(new StringReader(string), isNexus); |
| 725 | } |
| 726 | |
| 727 | protected boolean readData(Reader reader, boolean isNexus) throws IOException { |
| 728 |