org.w3.x1999.xlink.Simple Maven / Gradle / Ivy
The newest version!
/*
* XML Type: simple
* Namespace: http://www.w3.org/1999/xlink
* Java type: org.w3.x1999.xlink.Simple
*
* 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;
/**
* An XML simple(@http://www.w3.org/1999/xlink).
*
* This is a complex type.
*/
public interface Simple extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "simple75e4type");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "type" attribute
*/
org.w3.x1999.xlink.TypeType.Enum getType();
/**
* Gets (as xml) the "type" attribute
*/
org.w3.x1999.xlink.TypeType xgetType();
/**
* True if has "type" attribute
*/
boolean isSetType();
/**
* Sets the "type" attribute
*/
void setType(org.w3.x1999.xlink.TypeType.Enum type);
/**
* Sets (as xml) the "type" attribute
*/
void xsetType(org.w3.x1999.xlink.TypeType type);
/**
* Unsets the "type" attribute
*/
void unsetType();
/**
* Gets the "href" attribute
*/
java.lang.String getHref();
/**
* Gets (as xml) the "href" attribute
*/
org.w3.x1999.xlink.HrefType xgetHref();
/**
* True if has "href" attribute
*/
boolean isSetHref();
/**
* Sets the "href" attribute
*/
void setHref(java.lang.String href);
/**
* Sets (as xml) the "href" attribute
*/
void xsetHref(org.w3.x1999.xlink.HrefType href);
/**
* Unsets the "href" attribute
*/
void unsetHref();
/**
* 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();
/**
* 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();
/**
* Gets the "title" attribute
*/
java.lang.String getTitle();
/**
* Gets (as xml) the "title" attribute
*/
org.w3.x1999.xlink.TitleAttrType xgetTitle();
/**
* True if has "title" attribute
*/
boolean isSetTitle();
/**
* Sets the "title" attribute
*/
void setTitle(java.lang.String title);
/**
* Sets (as xml) the "title" attribute
*/
void xsetTitle(org.w3.x1999.xlink.TitleAttrType title);
/**
* Unsets the "title" attribute
*/
void unsetTitle();
/**
* 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();
/**
* 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();
}