Interface TestsDocument.Tests
-
- All Superinterfaces:
XmlObject
,XmlTokenSource
- All Known Implementing Classes:
TestsDocumentImpl.TestsImpl
- Enclosing interface:
- TestsDocument
public static interface TestsDocument.Tests extends XmlObject
An XML tests(@http://www.bea.com/2003/05/xmlbean/ltgfmt). This is a complex type.
-
-
Field Summary
Fields Modifier and Type Field Description static ElementFactory<TestsDocument.Tests>
Factory
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 TestCase
addNewTest()
Appends and returns a new empty value (as xml) as the last "test" elementTestCase[]
getTestArray()
Gets array of all "test" elementsTestCase
getTestArray(int i)
Gets ith "test" elementjava.util.List<TestCase>
getTestList()
Gets a List of "test" elementsTestCase
insertNewTest(int i)
Inserts and returns a new empty value (as xml) as the ith "test" elementvoid
removeTest(int i)
Removes the ith "test" elementvoid
setTestArray(int i, TestCase test)
Sets ith "test" elementvoid
setTestArray(TestCase[] testArray)
Sets array of all "test" elementint
sizeOfTestArray()
Returns number of "test" element-
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, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
-
-
-
-
Field Detail
-
Factory
static final ElementFactory<TestsDocument.Tests> Factory
-
type
static final SchemaType type
-
-
Method Detail
-
getTestList
java.util.List<TestCase> getTestList()
Gets a List of "test" elements
-
getTestArray
TestCase[] getTestArray()
Gets array of all "test" elements
-
getTestArray
TestCase getTestArray(int i)
Gets ith "test" element
-
sizeOfTestArray
int sizeOfTestArray()
Returns number of "test" element
-
setTestArray
void setTestArray(TestCase[] testArray)
Sets array of all "test" element
-
setTestArray
void setTestArray(int i, TestCase test)
Sets ith "test" element
-
insertNewTest
TestCase insertNewTest(int i)
Inserts and returns a new empty value (as xml) as the ith "test" element
-
addNewTest
TestCase addNewTest()
Appends and returns a new empty value (as xml) as the last "test" element
-
removeTest
void removeTest(int i)
Removes the ith "test" element
-
-