Interface FileDesc
-
- All Superinterfaces:
XmlObject
,XmlTokenSource
- All Known Implementing Classes:
FileDescImpl
public interface FileDesc extends XmlObject
An XML file-desc(@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
FileDesc.Factory
A factory class with static methods for creating instances of this type.static interface
FileDesc.Role
An XML role(@).
-
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 Code
addNewCode()
Appends and returns a new empty "code" elementCode
getCode()
Gets the "code" elementjava.lang.String
getFileName()
Gets the "fileName" attributejava.lang.String
getFolder()
Gets the "folder" attributeFileDesc.Role.Enum
getRole()
Gets the "role" attributejava.lang.String
getTsDir()
Gets the "tsDir" attributeboolean
getValidity()
Gets the "validity" attributeboolean
isSetCode()
True if has "code" elementboolean
isSetFileName()
True if has "fileName" attributeboolean
isSetFolder()
True if has "folder" attributeboolean
isSetRole()
True if has "role" attributeboolean
isSetTsDir()
True if has "tsDir" attributeboolean
isSetValidity()
True if has "validity" attributevoid
setCode(Code code)
Sets the "code" elementvoid
setFileName(java.lang.String fileName)
Sets the "fileName" attributevoid
setFolder(java.lang.String folder)
Sets the "folder" attributevoid
setRole(FileDesc.Role.Enum role)
Sets the "role" attributevoid
setTsDir(java.lang.String tsDir)
Sets the "tsDir" attributevoid
setValidity(boolean validity)
Sets the "validity" attributevoid
unsetCode()
Unsets the "code" elementvoid
unsetFileName()
Unsets the "fileName" attributevoid
unsetFolder()
Unsets the "folder" attributevoid
unsetRole()
Unsets the "role" attributevoid
unsetTsDir()
Unsets the "tsDir" attributevoid
unsetValidity()
Unsets the "validity" attributeXmlToken
xgetFileName()
Gets (as xml) the "fileName" attributeXmlToken
xgetFolder()
Gets (as xml) the "folder" attributeFileDesc.Role
xgetRole()
Gets (as xml) the "role" attributeXmlToken
xgetTsDir()
Gets (as xml) the "tsDir" attributeXmlBoolean
xgetValidity()
Gets (as xml) the "validity" attributevoid
xsetFileName(XmlToken fileName)
Sets (as xml) the "fileName" attributevoid
xsetFolder(XmlToken folder)
Sets (as xml) the "folder" attributevoid
xsetRole(FileDesc.Role role)
Sets (as xml) the "role" attributevoid
xsetTsDir(XmlToken tsDir)
Sets (as xml) the "tsDir" attributevoid
xsetValidity(XmlBoolean validity)
Sets (as xml) the "validity" 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
-
getCode
Code getCode()
Gets the "code" element
-
isSetCode
boolean isSetCode()
True if has "code" element
-
setCode
void setCode(Code code)
Sets the "code" element
-
addNewCode
Code addNewCode()
Appends and returns a new empty "code" element
-
unsetCode
void unsetCode()
Unsets the "code" element
-
getTsDir
java.lang.String getTsDir()
Gets the "tsDir" attribute
-
xgetTsDir
XmlToken xgetTsDir()
Gets (as xml) the "tsDir" attribute
-
isSetTsDir
boolean isSetTsDir()
True if has "tsDir" attribute
-
setTsDir
void setTsDir(java.lang.String tsDir)
Sets the "tsDir" attribute
-
xsetTsDir
void xsetTsDir(XmlToken tsDir)
Sets (as xml) the "tsDir" attribute
-
unsetTsDir
void unsetTsDir()
Unsets the "tsDir" attribute
-
getFolder
java.lang.String getFolder()
Gets the "folder" attribute
-
xgetFolder
XmlToken xgetFolder()
Gets (as xml) the "folder" attribute
-
isSetFolder
boolean isSetFolder()
True if has "folder" attribute
-
setFolder
void setFolder(java.lang.String folder)
Sets the "folder" attribute
-
xsetFolder
void xsetFolder(XmlToken folder)
Sets (as xml) the "folder" attribute
-
unsetFolder
void unsetFolder()
Unsets the "folder" attribute
-
getFileName
java.lang.String getFileName()
Gets the "fileName" attribute
-
xgetFileName
XmlToken xgetFileName()
Gets (as xml) the "fileName" attribute
-
isSetFileName
boolean isSetFileName()
True if has "fileName" attribute
-
setFileName
void setFileName(java.lang.String fileName)
Sets the "fileName" attribute
-
xsetFileName
void xsetFileName(XmlToken fileName)
Sets (as xml) the "fileName" attribute
-
unsetFileName
void unsetFileName()
Unsets the "fileName" attribute
-
getRole
FileDesc.Role.Enum getRole()
Gets the "role" attribute
-
xgetRole
FileDesc.Role xgetRole()
Gets (as xml) the "role" attribute
-
isSetRole
boolean isSetRole()
True if has "role" attribute
-
setRole
void setRole(FileDesc.Role.Enum role)
Sets the "role" attribute
-
xsetRole
void xsetRole(FileDesc.Role role)
Sets (as xml) the "role" attribute
-
unsetRole
void unsetRole()
Unsets the "role" attribute
-
getValidity
boolean getValidity()
Gets the "validity" attribute
-
xgetValidity
XmlBoolean xgetValidity()
Gets (as xml) the "validity" attribute
-
isSetValidity
boolean isSetValidity()
True if has "validity" attribute
-
setValidity
void setValidity(boolean validity)
Sets the "validity" attribute
-
xsetValidity
void xsetValidity(XmlBoolean validity)
Sets (as xml) the "validity" attribute
-
unsetValidity
void unsetValidity()
Unsets the "validity" attribute
-
-