org.w3.x1999.xlink.ArcroleAttribute Maven / Gradle / Ivy
The newest version!
/*
* An XML attribute type.
* Localname: arcrole
* Namespace: http://www.w3.org/1999/xlink
* Java type: org.w3.x1999.xlink.ArcroleAttribute
*
* 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 arcrole(@http://www.w3.org/1999/xlink) attribute.
*
* This is a complex type.
*/
public interface ArcroleAttribute extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "arcrolea142attrtypetype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "arcrole" attribute
*/
java.lang.String getArcrole();
/**
* Gets (as xml) the "arcrole" attribute
*/
org.w3.x1999.xlink.ArcroleType xgetArcrole();
/**
* True if has "arcrole" attribute
*/
boolean isSetArcrole();
/**
* Sets the "arcrole" attribute
*/
void setArcrole(java.lang.String arcrole);
/**
* Sets (as xml) the "arcrole" attribute
*/
void xsetArcrole(org.w3.x1999.xlink.ArcroleType arcrole);
/**
* Unsets the "arcrole" attribute
*/
void unsetArcrole();
}