in progress
[jalview.git] / forester / java / src / org / forester / io / parsers / tol / TolXmlMapping.java
1 // $Id:
2 // FORESTER -- software libraries and applications
3 // for evolutionary biology research and applications.
4 //
5 // Copyright (C) 2008-2009 Christian M. Zmasek
6 // Copyright (C) 2008-2009 Burnham Institute for Medical Research
7 // Copyright (C) 2000-2001 Washington University School of Medicine
8 // and Howard Hughes Medical Institute
9 // All rights reserved
10 //
11 // This library is free software; you can redistribute it and/or
12 // modify it under the terms of the GNU Lesser General Public
13 // License as published by the Free Software Foundation; either
14 // version 2.1 of the License, or (at your option) any later version.
15 //
16 // This library is distributed in the hope that it will be useful,
17 // but WITHOUT ANY WARRANTY; without even the implied warranty of
18 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 // Lesser General Public License for more details.
20 //
21 // You should have received a copy of the GNU Lesser General Public
22 // License along with this library; if not, write to the Free Software
23 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
24 //
25 // Contact: phylosoft @ gmail . com
26 // WWW: www.phylosoft.org/forester
27
28 package org.forester.io.parsers.tol;
29
30 public final class TolXmlMapping {
31
32     public static final String PHYLOGENY               = "TREE";
33     public static final String CLADE                   = "NODE";
34     public static final String AUTHDATE                = "AUTHDATE";
35     public static final String AUTHORITY               = "AUTHORITY";
36     public static final String TAXONOMY_NAME           = "NAME";
37     public static final String OTHERNAMES              = "OTHERNAMES";
38     public static final String OTHERNAME               = "OTHERNAME";
39     public static final String OTHERNAME_NAME          = "NAME";
40     public static final String NODE_ID_ATTR            = "ID";
41     public static final String NODE_ITALICIZENAME_ATTR = "ITALICIZENAME";
42     public static final String TOL_TAXONOMY_ID_TYPE    = "tol";
43
44     private TolXmlMapping() {
45         // Hidden.
46     }
47 }