org.w3.x1999.xlink.TitleDocument Maven / Gradle / Ivy
The newest version!
/*
* An XML document type.
* Localname: title
* Namespace: http://www.w3.org/1999/xlink
* Java type: org.w3.x1999.xlink.TitleDocument
*
* Automatically generated - do not modify.
*/
package org.w3.x1999.xlink;
import org.apache.xmlbeans.impl.schema.ElementFactory;
import org.apache.xmlbeans.impl.schema.AbstractDocumentFactory;
import org.apache.xmlbeans.impl.schema.DocumentFactory;
import org.apache.xmlbeans.impl.schema.SimpleTypeFactory;
/**
* A document containing one title(@http://www.w3.org/1999/xlink) element.
*
* This is a complex type.
*/
public interface TitleDocument extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "titlea440doctype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "title" element
*/
org.w3.x1999.xlink.TitleEltType getTitle();
/**
* Sets the "title" element
*/
void setTitle(org.w3.x1999.xlink.TitleEltType title);
/**
* Appends and returns a new empty "title" element
*/
org.w3.x1999.xlink.TitleEltType addNewTitle();
}