Interface TImport
-
- All Superinterfaces:
XmlObject
,XmlTokenSource
- All Known Implementing Classes:
TImportImpl
public interface TImport extends XmlObject
An XML TImport(@http://www.apache.org/internal/xmlbeans/wsdlsubst). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
TImport.Factory
A factory class with static methods for creating instances of this type.
-
Field Summary
Fields Modifier and Type Field Description static SchemaType
type
-
Fields inherited from interface org.apache.xmlbeans.XmlObject
EQUAL, GREATER_THAN, LESS_THAN, NOT_EQUAL
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getLocation()
Gets the "location" attributejava.lang.String
getNamespace()
Gets the "namespace" attributevoid
setLocation(java.lang.String location)
Sets the "location" attributevoid
setNamespace(java.lang.String namespace)
Sets the "namespace" attributeXmlAnyURI
xgetLocation()
Gets (as xml) the "location" attributeXmlAnyURI
xgetNamespace()
Gets (as xml) the "namespace" attributevoid
xsetLocation(XmlAnyURI location)
Sets (as xml) the "location" attributevoid
xsetNamespace(XmlAnyURI namespace)
Sets (as xml) the "namespace" attribute-
Methods inherited from interface org.apache.xmlbeans.XmlObject
changeType, compareTo, compareValue, copy, copy, execQuery, execQuery, isImmutable, isNil, schemaType, selectAttribute, selectAttribute, selectAttributes, selectChildren, selectChildren, selectChildren, selectPath, selectPath, set, setNil, substitute, toString, validate, validate, valueEquals, valueHashCode
-
Methods inherited from interface org.apache.xmlbeans.XmlTokenSource
documentProperties, dump, getDomNode, monitor, newCursor, newDomNode, newDomNode, newInputStream, newInputStream, newReader, newReader, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
type
static final SchemaType type
-
-
Method Detail
-
getNamespace
java.lang.String getNamespace()
Gets the "namespace" attribute
-
xgetNamespace
XmlAnyURI xgetNamespace()
Gets (as xml) the "namespace" attribute
-
setNamespace
void setNamespace(java.lang.String namespace)
Sets the "namespace" attribute
-
xsetNamespace
void xsetNamespace(XmlAnyURI namespace)
Sets (as xml) the "namespace" attribute
-
getLocation
java.lang.String getLocation()
Gets the "location" attribute
-
xgetLocation
XmlAnyURI xgetLocation()
Gets (as xml) the "location" attribute
-
setLocation
void setLocation(java.lang.String location)
Sets the "location" attribute
-
xsetLocation
void xsetLocation(XmlAnyURI location)
Sets (as xml) the "location" attribute
-
-