org.w3.x1999.xlink.FromAttribute Maven / Gradle / Ivy
The newest version!
/*
* An XML attribute type.
* Localname: from
* Namespace: http://www.w3.org/1999/xlink
* Java type: org.w3.x1999.xlink.FromAttribute
*
* 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 from(@http://www.w3.org/1999/xlink) attribute.
*
* This is a complex type.
*/
public interface FromAttribute extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "from452aattrtypetype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "from" attribute
*/
java.lang.String getFrom();
/**
* Gets (as xml) the "from" attribute
*/
org.w3.x1999.xlink.FromType xgetFrom();
/**
* True if has "from" attribute
*/
boolean isSetFrom();
/**
* Sets the "from" attribute
*/
void setFrom(java.lang.String from);
/**
* Sets (as xml) the "from" attribute
*/
void xsetFrom(org.w3.x1999.xlink.FromType from);
/**
* Unsets the "from" attribute
*/
void unsetFrom();
}