001package com.hfg.setting;
002
003import com.hfg.xml.XMLName;
004
005//------------------------------------------------------------------------------
006/**
007 * Tag and attribute names for XML-serializable settings.
008 *
009 * @author J. Alex Taylor, hairyfatguy.com
010 */
011//------------------------------------------------------------------------------
012// com.hfg XML/HTML Coding Library
013//
014// This library is free software; you can redistribute it and/or
015// modify it under the terms of the GNU Lesser General Public
016// License as published by the Free Software Foundation; either
017// version 2.1 of the License, or (at your option) any later version.
018//
019// This library is distributed in the hope that it will be useful,
020// but WITHOUT ANY WARRANTY; without even the implied warranty of
021// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
022// Lesser General Public License for more details.
023//
024// You should have received a copy of the GNU Lesser General Public
025// License along with this library; if not, write to the Free Software
026// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
027//
028// J. Alex Taylor, President, Founder, CEO, COO, CFO, OOPS hairyfatguy.com
029// jataylor@hairyfatguy.com
030//------------------------------------------------------------------------------
031
032public class SettingXML
033{
034
035   public static final XMLName SETTING  = new XMLName("Setting");
036   public static final XMLName SETTINGS = new XMLName("Settings");
037   public static final XMLName VALUE    = new XMLName("Value");
038
039   public static final XMLName CLASS_ATT = new XMLName("class");
040   public static final XMLName ENUM_ATT = new XMLName("enum");
041   public static final XMLName INSTANCE_ATT = new XMLName("instance");
042   public static final XMLName NAME_ATT = new XMLName("name");
043   public static final XMLName TYPE_ATT = new XMLName("type");
044}