org.w3.x1999.xlink.ResourceDocument Maven / Gradle / Ivy
The newest version!
/*
* An XML document type.
* Localname: resource
* Namespace: http://www.w3.org/1999/xlink
* Java type: org.w3.x1999.xlink.ResourceDocument
*
* 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 resource(@http://www.w3.org/1999/xlink) element.
*
* This is a complex type.
*/
public interface ResourceDocument extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "resourcefb38doctype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "resource" element
*/
org.w3.x1999.xlink.ResourceType getResource();
/**
* Sets the "resource" element
*/
void setResource(org.w3.x1999.xlink.ResourceType resource);
/**
* Appends and returns a new empty "resource" element
*/
org.w3.x1999.xlink.ResourceType addNewResource();
}