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 class
TestCase.Factory
A factory class with static methods for creating instances of this type.static interface
TestCase.Files
An XML files(@http://www.bea.com/2003/05/xmlbean/ltgfmt).
-
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 TestCase.Files
addNewFiles()
Appends and returns a new empty "files" elementjava.lang.String
getDescription()
Gets the "description" elementTestCase.Files
getFiles()
Gets the "files" elementjava.lang.String
getId()
Gets the "id" attributeboolean
getModified()
Gets the "modified" attributejava.lang.String
getOrigin()
Gets the "origin" attributeboolean
isSetDescription()
True if has "description" elementboolean
isSetId()
True if has "id" attributeboolean
isSetModified()
True if has "modified" attributeboolean
isSetOrigin()
True if has "origin" attributevoid
setDescription(java.lang.String description)
Sets the "description" elementvoid
setFiles(TestCase.Files files)
Sets the "files" elementvoid
setId(java.lang.String id)
Sets the "id" attributevoid
setModified(boolean modified)
Sets the "modified" attributevoid
setOrigin(java.lang.String origin)
Sets the "origin" attributevoid
unsetDescription()
Unsets the "description" elementvoid
unsetId()
Unsets the "id" attributevoid
unsetModified()
Unsets the "modified" attributevoid
unsetOrigin()
Unsets the "origin" attributeXmlString
xgetDescription()
Gets (as xml) the "description" elementXmlID
xgetId()
Gets (as xml) the "id" attributeXmlBoolean
xgetModified()
Gets (as xml) the "modified" attributeXmlToken
xgetOrigin()
Gets (as xml) the "origin" attributevoid
xsetDescription(XmlString description)
Sets (as xml) the "description" elementvoid
xsetId(XmlID id)
Sets (as xml) the "id" attributevoid
xsetModified(XmlBoolean modified)
Sets (as xml) the "modified" attributevoid
xsetOrigin(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
-
-