org.w3.x1999.xlink.ActuateAttribute Maven / Gradle / Ivy
The newest version!
/*
* An XML attribute type.
* Localname: actuate
* Namespace: http://www.w3.org/1999/xlink
* Java type: org.w3.x1999.xlink.ActuateAttribute
*
* 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 actuate(@http://www.w3.org/1999/xlink) attribute.
*
* This is a complex type.
*/
public interface ActuateAttribute extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "actuate62dbattrtypetype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "actuate" attribute
*/
org.w3.x1999.xlink.ActuateType.Enum getActuate();
/**
* Gets (as xml) the "actuate" attribute
*/
org.w3.x1999.xlink.ActuateType xgetActuate();
/**
* True if has "actuate" attribute
*/
boolean isSetActuate();
/**
* Sets the "actuate" attribute
*/
void setActuate(org.w3.x1999.xlink.ActuateType.Enum actuate);
/**
* Sets (as xml) the "actuate" attribute
*/
void xsetActuate(org.w3.x1999.xlink.ActuateType actuate);
/**
* Unsets the "actuate" attribute
*/
void unsetActuate();
}