org.purl.dc.terms.LCC Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of interfaces Show documentation
Show all versions of interfaces Show documentation
XML schema for FIX Orchestra session configuration
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2020.08.24 at 04:55:36 PM CDT
//
package org.purl.dc.terms;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
import org.jvnet.jaxb2_commons.lang.CopyStrategy2;
import org.jvnet.jaxb2_commons.lang.CopyTo2;
import org.jvnet.jaxb2_commons.lang.JAXBCopyStrategy;
import org.jvnet.jaxb2_commons.locator.ObjectLocator;
import org.purl.dc.elements._1.SimpleLiteral;
/**
* Java class for LCC complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="LCC">
* <simpleContent>
* <restriction base="<http://purl.org/dc/elements/1.1/>SimpleLiteral">
* </restriction>
* </simpleContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LCC")
public class LCC
extends SimpleLiteral
implements Cloneable, CopyTo2
{
public Object clone() {
return copyTo(createNewInstance());
}
public Object copyTo(Object target) {
final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE;
return copyTo(null, target, strategy);
}
public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strategy) {
final Object draftCopy = ((target == null)?createNewInstance():target);
super.copyTo(locator, draftCopy, strategy);
return draftCopy;
}
public Object createNewInstance() {
return new LCC();
}
}