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

es.us.isa.bpmn.xmlClasses.omgdc.ObjectFactory Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 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.11.08 at 10:16:40 AM GMT+01:00 
//


package es.us.isa.bpmn.xmlClasses.omgdc;

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 ppinotBpmn20.xmlClasses.omgdc package. 
 * 

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 _Bounds_QNAME = new QName("http://www.omg.org/spec/DD/20100524/DC", "Bounds"); private final static QName _Point_QNAME = new QName("http://www.omg.org/spec/DD/20100524/DC", "Point"); private final static QName _Font_QNAME = new QName("http://www.omg.org/spec/DD/20100524/DC", "Font"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: ppinotBpmn20.xmlClasses.omgdc * */ public ObjectFactory() { } /** * Create an instance of {@link Font } * */ public Font createFont() { return new Font(); } /** * Create an instance of {@link Bounds } * */ public Bounds createBounds() { return new Bounds(); } /** * Create an instance of {@link Point } * */ public Point createPoint() { return new Point(); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Bounds }{@code >}} * */ @XmlElementDecl(namespace = "http://www.omg.org/spec/DD/20100524/DC", name = "Bounds") public JAXBElement createBounds(Bounds value) { return new JAXBElement(_Bounds_QNAME, Bounds.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Point }{@code >}} * */ @XmlElementDecl(namespace = "http://www.omg.org/spec/DD/20100524/DC", name = "Point") public JAXBElement createPoint(Point value) { return new JAXBElement(_Point_QNAME, Point.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Font }{@code >}} * */ @XmlElementDecl(namespace = "http://www.omg.org/spec/DD/20100524/DC", name = "Font") public JAXBElement createFont(Font value) { return new JAXBElement(_Font_QNAME, Font.class, null, value); } }