Interface DownloadedSchemasDocument.DownloadedSchemas
-
- All Superinterfaces:
XmlObject
,XmlTokenSource
- All Known Implementing Classes:
DownloadedSchemasDocumentImpl.DownloadedSchemasImpl
- Enclosing interface:
- DownloadedSchemasDocument
public static interface DownloadedSchemasDocument.DownloadedSchemas extends XmlObject
An XML downloaded-schemas(@http://www.bea.com/2003/01/xmlbean/xsdownload). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
DownloadedSchemasDocument.DownloadedSchemas.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 DownloadedSchemaEntry
addNewEntry()
Appends and returns a new empty value (as xml) as the last "entry" elementjava.lang.String
getDefaultDirectory()
Gets the "defaultDirectory" attributeDownloadedSchemaEntry[]
getEntryArray()
Gets array of all "entry" elementsDownloadedSchemaEntry
getEntryArray(int i)
Gets ith "entry" elementDownloadedSchemaEntry
insertNewEntry(int i)
Inserts and returns a new empty value (as xml) as the ith "entry" elementboolean
isSetDefaultDirectory()
True if has "defaultDirectory" attributevoid
removeEntry(int i)
Removes the ith "entry" elementvoid
setDefaultDirectory(java.lang.String defaultDirectory)
Sets the "defaultDirectory" attributevoid
setEntryArray(int i, DownloadedSchemaEntry entry)
Sets ith "entry" elementvoid
setEntryArray(DownloadedSchemaEntry[] entryArray)
Sets array of all "entry" elementint
sizeOfEntryArray()
Returns number of "entry" elementvoid
unsetDefaultDirectory()
Unsets the "defaultDirectory" attributeXmlToken
xgetDefaultDirectory()
Gets (as xml) the "defaultDirectory" attributevoid
xsetDefaultDirectory(XmlToken defaultDirectory)
Sets (as xml) the "defaultDirectory" 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
-
getEntryArray
DownloadedSchemaEntry[] getEntryArray()
Gets array of all "entry" elements
-
getEntryArray
DownloadedSchemaEntry getEntryArray(int i)
Gets ith "entry" element
-
sizeOfEntryArray
int sizeOfEntryArray()
Returns number of "entry" element
-
setEntryArray
void setEntryArray(DownloadedSchemaEntry[] entryArray)
Sets array of all "entry" element
-
setEntryArray
void setEntryArray(int i, DownloadedSchemaEntry entry)
Sets ith "entry" element
-
insertNewEntry
DownloadedSchemaEntry insertNewEntry(int i)
Inserts and returns a new empty value (as xml) as the ith "entry" element
-
addNewEntry
DownloadedSchemaEntry addNewEntry()
Appends and returns a new empty value (as xml) as the last "entry" element
-
removeEntry
void removeEntry(int i)
Removes the ith "entry" element
-
getDefaultDirectory
java.lang.String getDefaultDirectory()
Gets the "defaultDirectory" attribute
-
xgetDefaultDirectory
XmlToken xgetDefaultDirectory()
Gets (as xml) the "defaultDirectory" attribute
-
isSetDefaultDirectory
boolean isSetDefaultDirectory()
True if has "defaultDirectory" attribute
-
setDefaultDirectory
void setDefaultDirectory(java.lang.String defaultDirectory)
Sets the "defaultDirectory" attribute
-
xsetDefaultDirectory
void xsetDefaultDirectory(XmlToken defaultDirectory)
Sets (as xml) the "defaultDirectory" attribute
-
unsetDefaultDirectory
void unsetDefaultDirectory()
Unsets the "defaultDirectory" attribute
-
-