org.w3.x1999.xlink.LabelAttribute Maven / Gradle / Ivy
The newest version!
/*
* An XML attribute type.
* Localname: label
* Namespace: http://www.w3.org/1999/xlink
* Java type: org.w3.x1999.xlink.LabelAttribute
*
* 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 label(@http://www.w3.org/1999/xlink) attribute.
*
* This is a complex type.
*/
public interface LabelAttribute extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "label7256attrtypetype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "label" attribute
*/
java.lang.String getLabel();
/**
* Gets (as xml) the "label" attribute
*/
org.w3.x1999.xlink.LabelType xgetLabel();
/**
* True if has "label" attribute
*/
boolean isSetLabel();
/**
* Sets the "label" attribute
*/
void setLabel(java.lang.String label);
/**
* Sets (as xml) the "label" attribute
*/
void xsetLabel(org.w3.x1999.xlink.LabelType label);
/**
* Unsets the "label" attribute
*/
void unsetLabel();
}