org.w3.x1999.xlink.RoleAttribute Maven / Gradle / Ivy
The newest version!
/*
* An XML attribute type.
* Localname: role
* Namespace: http://www.w3.org/1999/xlink
* Java type: org.w3.x1999.xlink.RoleAttribute
*
* 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 role(@http://www.w3.org/1999/xlink) attribute.
*
* This is a complex type.
*/
public interface RoleAttribute extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "role9fdeattrtypetype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "role" attribute
*/
java.lang.String getRole();
/**
* Gets (as xml) the "role" attribute
*/
org.w3.x1999.xlink.RoleType xgetRole();
/**
* True if has "role" attribute
*/
boolean isSetRole();
/**
* Sets the "role" attribute
*/
void setRole(java.lang.String role);
/**
* Sets (as xml) the "role" attribute
*/
void xsetRole(org.w3.x1999.xlink.RoleType role);
/**
* Unsets the "role" attribute
*/
void unsetRole();
}