001    /*
002     * (c) Copyright 2010 University of Bristol
003     * All rights reserved.
004     * [See end of file]
005     */
006    package net.rootdev.javardfa;
007    
008    public enum Setting {
009    
010        FormMode, ManualNamespaces, OnePointOne
011    }
012    
013    /*
014     * (c) Copyright 2010 University of Bristol
015     * All rights reserved.
016     *
017     * Redistribution and use in source and binary forms, with or without
018     * modification, are permitted provided that the following conditions
019     * are met:
020     * 1. Redistributions of source code must retain the above copyright
021     *    notice, this list of conditions and the following disclaimer.
022     * 2. Redistributions in binary form must reproduce the above copyright
023     *    notice, this list of conditions and the following disclaimer in the
024     *    documentation and/or other materials provided with the distribution.
025     * 3. The name of the author may not be used to endorse or promote products
026     *    derived from this software without specific prior written permission.
027     *
028     * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
029     * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
030     * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
031     * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
032     * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
033     * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
034     * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
035     * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
036     * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
037     * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
038     */