Files
ch.psi.plot/ch.psi.plot/tmp/done/ObjectFactory.java

97 lines
3.1 KiB
Java

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2009.12.07 at 03:37:39 PM CET
//
package ch.psi.plot.plot.done;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName;
/**
* This object contains factory methods for each
* Java content interface and Java element interface
* generated in the ch.psi.sls.xasec.plot.menuconfig package.
* <p>An ObjectFactory allows you to programatically
* construct new instances of the Java representation
* for XML content. The Java representation of XML
* content can consist of schema derived interfaces
* and classes representing the binding of schema
* type definitions, element declarations and model
* groups. Factory methods for each of these are
* provided in this class.
*
*/
@XmlRegistry
public class ObjectFactory {
private final static QName _MenuNode_QNAME = new QName("", "menuNode");
private final static QName _UtilityClass_QNAME = new QName("", "utilityClass");
private final static QName _MenuTree_QNAME = new QName("", "menuTree");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: ch.psi.sls.xasec.plot.menuconfig
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link MenuNodeType }
*
*/
public MenuNodeType createMenuNodeType() {
return new MenuNodeType();
}
/**
* Create an instance of {@link MenuTreeType }
*
*/
public MenuTreeType createMenuTreeType() {
return new MenuTreeType();
}
/**
* Create an instance of {@link UtilityClassType }
*
*/
public UtilityClassType createUtilityClassType() {
return new UtilityClassType();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link MenuNodeType }{@code >}}
*
*/
@XmlElementDecl(namespace = "", name = "menuNode")
public JAXBElement<MenuNodeType> createMenuNode(MenuNodeType value) {
return new JAXBElement<MenuNodeType>(_MenuNode_QNAME, MenuNodeType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link UtilityClassType }{@code >}}
*
*/
@XmlElementDecl(namespace = "", name = "utilityClass")
public JAXBElement<UtilityClassType> createUtilityClass(UtilityClassType value) {
return new JAXBElement<UtilityClassType>(_UtilityClass_QNAME, UtilityClassType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link MenuTreeType }{@code >}}
*
*/
@XmlElementDecl(namespace = "", name = "menuTree")
public JAXBElement<MenuTreeType> createMenuTree(MenuTreeType value) {
return new JAXBElement<MenuTreeType>(_MenuTree_QNAME, MenuTreeType.class, null, value);
}
}