Interface TestCase
-
- All Superinterfaces:
XmlObject,XmlTokenSource
- All Known Implementing Classes:
TestCaseImpl
public interface TestCase extends XmlObject
An XML test-case(@http://www.bea.com/2003/05/xmlbean/ltgfmt). This is a complex type.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classTestCase.FactoryA factory class with static methods for creating instances of this type.static interfaceTestCase.FilesAn XML files(@http://www.bea.com/2003/05/xmlbean/ltgfmt).
-
Field Summary
Fields Modifier and Type Field Description static SchemaTypetype-
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.FilesaddNewFiles()Appends and returns a new empty "files" elementjava.lang.StringgetDescription()Gets the "description" elementTestCase.FilesgetFiles()Gets the "files" elementjava.lang.StringgetId()Gets the "id" attributebooleangetModified()Gets the "modified" attributejava.lang.StringgetOrigin()Gets the "origin" attributebooleanisSetDescription()True if has "description" elementbooleanisSetId()True if has "id" attributebooleanisSetModified()True if has "modified" attributebooleanisSetOrigin()True if has "origin" attributevoidsetDescription(java.lang.String description)Sets the "description" elementvoidsetFiles(TestCase.Files files)Sets the "files" elementvoidsetId(java.lang.String id)Sets the "id" attributevoidsetModified(boolean modified)Sets the "modified" attributevoidsetOrigin(java.lang.String origin)Sets the "origin" attributevoidunsetDescription()Unsets the "description" elementvoidunsetId()Unsets the "id" attributevoidunsetModified()Unsets the "modified" attributevoidunsetOrigin()Unsets the "origin" attributeXmlStringxgetDescription()Gets (as xml) the "description" elementXmlIDxgetId()Gets (as xml) the "id" attributeXmlBooleanxgetModified()Gets (as xml) the "modified" attributeXmlTokenxgetOrigin()Gets (as xml) the "origin" attributevoidxsetDescription(XmlString description)Sets (as xml) the "description" elementvoidxsetId(XmlID id)Sets (as xml) the "id" attributevoidxsetModified(XmlBoolean modified)Sets (as xml) the "modified" attributevoidxsetOrigin(XmlToken origin)Sets (as xml) the "origin" 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
-
getDescription
java.lang.String getDescription()
Gets the "description" element
-
xgetDescription
XmlString xgetDescription()
Gets (as xml) the "description" element
-
isSetDescription
boolean isSetDescription()
True if has "description" element
-
setDescription
void setDescription(java.lang.String description)
Sets the "description" element
-
xsetDescription
void xsetDescription(XmlString description)
Sets (as xml) the "description" element
-
unsetDescription
void unsetDescription()
Unsets the "description" element
-
getFiles
TestCase.Files getFiles()
Gets the "files" element
-
setFiles
void setFiles(TestCase.Files files)
Sets the "files" element
-
addNewFiles
TestCase.Files addNewFiles()
Appends and returns a new empty "files" element
-
getId
java.lang.String getId()
Gets the "id" attribute
-
xgetId
XmlID xgetId()
Gets (as xml) the "id" attribute
-
isSetId
boolean isSetId()
True if has "id" attribute
-
setId
void setId(java.lang.String id)
Sets the "id" attribute
-
xsetId
void xsetId(XmlID id)
Sets (as xml) the "id" attribute
-
unsetId
void unsetId()
Unsets the "id" attribute
-
getOrigin
java.lang.String getOrigin()
Gets the "origin" attribute
-
xgetOrigin
XmlToken xgetOrigin()
Gets (as xml) the "origin" attribute
-
isSetOrigin
boolean isSetOrigin()
True if has "origin" attribute
-
setOrigin
void setOrigin(java.lang.String origin)
Sets the "origin" attribute
-
xsetOrigin
void xsetOrigin(XmlToken origin)
Sets (as xml) the "origin" attribute
-
unsetOrigin
void unsetOrigin()
Unsets the "origin" attribute
-
getModified
boolean getModified()
Gets the "modified" attribute
-
xgetModified
XmlBoolean xgetModified()
Gets (as xml) the "modified" attribute
-
isSetModified
boolean isSetModified()
True if has "modified" attribute
-
setModified
void setModified(boolean modified)
Sets the "modified" attribute
-
xsetModified
void xsetModified(XmlBoolean modified)
Sets (as xml) the "modified" attribute
-
unsetModified
void unsetModified()
Unsets the "modified" attribute
-
-