org.w3.x1999.xlink.ShowAttribute Maven / Gradle / Ivy
The newest version!
/*
* An XML attribute type.
* Localname: show
* Namespace: http://www.w3.org/1999/xlink
* Java type: org.w3.x1999.xlink.ShowAttribute
*
* 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 show(@http://www.w3.org/1999/xlink) attribute.
*
* This is a complex type.
*/
public interface ShowAttribute extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "show06b7attrtypetype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "show" attribute
*/
org.w3.x1999.xlink.ShowType.Enum getShow();
/**
* Gets (as xml) the "show" attribute
*/
org.w3.x1999.xlink.ShowType xgetShow();
/**
* True if has "show" attribute
*/
boolean isSetShow();
/**
* Sets the "show" attribute
*/
void setShow(org.w3.x1999.xlink.ShowType.Enum show);
/**
* Sets (as xml) the "show" attribute
*/
void xsetShow(org.w3.x1999.xlink.ShowType show);
/**
* Unsets the "show" attribute
*/
void unsetShow();
}