All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nz.net.ultraq.preferences.xml.XMLRoot Maven / Gradle / Ivy

Go to download

An implementation of the Java Preferences API (java.util.prefs) to store preferences in an XML file, in a subdirectory of a Java program's working directory.

There is a newer version: 2.0.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.6 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2012.08.12 at 10:21:32 PM NZST 
//


package nz.net.ultraq.preferences.xml;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for preferences element declaration. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <element name="preferences">
 *   <complexType>
 *     <complexContent>
 *       <extension base="{http://www.ultraq.net.nz/preferences/xml}Node">
 *       </extension>
 *     </complexContent>
 *   </complexType>
 * </element>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "preferences") public class XMLRoot extends XMLNode { /** * Default constructor. */ public XMLRoot() { } /** * Constructor, set the name of this node. * * @param name */ public XMLRoot(String name) { super(name); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy