|
| Foundation |
|
| |||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||||||
@SASScope(value="ALL") @BinaryCompatibilityOnly public interface DAVResourceInterface
Provides the interface for a DAV Resource. A DAVResource is a WebDAV (Distributed Authoring and Versioning) resource as specified in IETF RFC 2518.
| Method Summary | |
|---|---|
abstract void |
close()
Closes the socket used for this connection. |
abstract org.apache.http.entity.ContentType |
contentType()
Gets the Apache HTTP entity content type of the content for this DAV resource. |
abstract DAVResource |
copy(java.lang.String targetUrl)
Copies resource to the target destination. |
abstract void |
delete()
Deletes this DAV resource. |
abstract void |
doCheckin()
Check in this DAV resource. |
abstract void |
doCheckout()
Checks out this DAV resource. |
abstract void |
doControl()
Puts the resource under version control. |
abstract void |
doLabel(int labelAction,
java.lang.String label)
Modifies the version label on the resource (if this is supported by the server). |
abstract void |
doLabel(int labelAction,
java.lang.String label,
int depth)
Modifies the label on the version resource (if this is supported by the server). |
abstract DavPropertyResult |
doReport(org.apache.jackrabbit.webdav.version.report.ReportInfo reportInfo)
Gets a report on the current DAV resource. |
abstract DavPropertyResult |
doSearch(org.apache.jackrabbit.webdav.search.SearchInfo searchInfo)
The SEARCH method invokes one of the implemented search grammars on the server to evaluate the query. |
abstract void |
doUncheckout()
Uncheckout this DAV resource, canceling a previous checkout. |
abstract boolean |
exists()
Returns whether the resource exists. |
abstract com.sas.services.webdav.Acl |
getAcl()
Gets the access control list for this DAV resource. |
abstract java.lang.String |
getACL()
Gets the access control list (ACL) for this DAV resource. |
abstract com.sas.services.webdav.Version |
getCheckedIn()
Retrieves the currently checked in resource. |
abstract com.sas.services.webdav.Version |
getCheckedOut()
Retrieves the currently checked out resource. |
abstract java.util.List |
getChildrenList(java.lang.String path)
Gets the list of children. |
abstract byte[] |
getContents()
Gets the contents of this DAV resource as a byte array. |
abstract void |
getContents(java.io.File fileData)
Gets the content of this DAV resource into a file specified as the parameter. |
abstract java.lang.String |
getContentsAsString()
Gets the contents of this DAV resource as a String. |
abstract java.io.InputStream |
getContentsInputStream()
Gets the content of this DAV resource as a stream. |
abstract java.lang.String |
getContentType()
Gets the content type of the content for this DAV resource. |
abstract DavPropertyResult |
getDavProperties()
Gets all of the DAV resource's properties using the resource's depth. |
abstract DavPropertyResult |
getDavProperties(org.apache.jackrabbit.webdav.property.DavPropertyNameSet davPropertyNameSet,
int depth)
Gets the properties for the specified DAV property names and search depth. |
abstract DavPropertyResult |
getDavProperties(int depth)
Gets all of the DAV resource's properties for the specified depth. |
abstract DavPropertyResult |
getDavProperties(PropertyName[] propertyNames)
Gets all the properties for the specified property names on the DAV resource. |
abstract DavPropertyResult |
getDavProperties(PropertyName[] propertyNames,
int depth)
Gets all the properties for the specified property names on the DAV resource. |
abstract DavPropertyResult |
getDavPropertyNames()
Gets DAV properties for all of a DAV resource's property names. |
abstract DavPropertyResult |
getDavPropertyNames(int depth)
Gets DAV properties for all of a DAV resource's property names for the specified depth. |
abstract int |
getDepth()
Gets the value for depth. |
abstract int |
getExistsRequirement()
Gets the existence requirement. |
abstract boolean |
getOverwrite()
Gets the overwrite flag which specifies whether this DAV resource can be overwritten. |
abstract java.lang.String |
getPath()
Gets the path for the WebDAV resource that is currently represented by this DAVResource. |
abstract java.util.List |
getPreviousVersionNames()
Gets a list of previous version names for this DAV resource. |
abstract int |
getStatusCode()
Gets the HTTP status code for the last operation/method. |
abstract java.lang.String |
getStatusMessage()
Gets the message associated with the status code for the last operation/method. |
abstract java.lang.String |
getTempDir()
Returns the current setting for the directory for temporary files. |
abstract java.net.URL |
getURL()
Gets the URL that this DAV resource represents. |
abstract com.sas.services.webdav.Version |
getVersion(java.lang.String versionName)
Gets a particular version of this DAV resource. |
abstract boolean |
isCollection()
Is this DAV resource a collection? |
abstract boolean |
isLocked()
Is this DAV resource locked? |
abstract java.lang.String |
lock()
Locks this DAV resource. |
abstract boolean |
makeCollection()
Makes a collection. |
abstract DAVResource |
move(java.lang.String targetUrl)
Moves this DAV resource to the location given in the parameter. |
abstract void |
removeProperties(org.w3c.dom.Element[] propNames)
Removes the properties specified in the parameter. |
abstract void |
removeProperties(PropertyName[] propNames)
Removes the properties specified in the parameter. |
abstract void |
removeProperty(org.w3c.dom.Element propName)
Removes the property specified in the parameter. |
abstract void |
removeProperty(PropertyName propName)
Removes the property specified in the parameter. |
abstract void |
removeProperty(java.lang.String propName)
Removes the property specified in the parameter. |
abstract java.lang.String |
setAcl(com.sas.services.webdav.Acl acl)
Sets the access control list for this DAV resource. |
abstract java.lang.String |
setACL(java.lang.String acl)
Set/Update the Access Control List for this DAV resource. |
abstract void |
setContents(byte[] contents)
Sets the contents of the resource, passing in a byte array. |
abstract void |
setContents(java.io.InputStream is)
Sets the contents of the resource from an input stream. |
abstract void |
setContents(java.lang.String content)
Sets the contents of the resource, passing in a URL. |
abstract void |
setContents(java.net.URL url)
Sets the contents of the resource, passing in a URL. |
abstract void |
setContentType(java.lang.String contentType)
Sets the contents type for the content of the resource. |
abstract void |
setCredentialsProvider(org.apache.http.client.CredentialsProvider credentialsProvider)
Sets a credentials provider. |
abstract void |
setDepth(int depth)
Set the value for depth. |
abstract void |
setExistsRequirement(int requirement)
Sets the existence requirement. |
abstract void |
setOverwrite(boolean overwrite)
Sets the overwrite flag which specifies whether this DAV resource can be overwritten. |
abstract void |
setPath(java.lang.String path)
Sets the path for this DAV resource. |
abstract void |
setProperties(org.w3c.dom.DocumentFragment props)
Sets the values of properties, as given in the parameter. |
abstract void |
setProperties(org.w3c.dom.Element[] props)
Sets the values of properties, as given in the parameter. |
abstract void |
setProperties(PropertyName[] propNames,
java.lang.String[] propValues)
Sets the values of properties, as given in the parameter. |
abstract void |
setProperty(org.w3c.dom.Element prop)
Sets the value of a property, as given in the parameter. |
abstract void |
setProperty(PropertyName propName,
java.lang.String propValue)
Sets the value of a property, as given in the parameter. |
abstract void |
setTempDir(java.lang.String tempDir)
Provides a way to set a directory for temporary files. |
abstract boolean |
SUCCEEDED()
Returns whether the last method was successful or not. |
abstract void |
unlock()
Unlocks the resource, if previously locked by the same principal. |
abstract void |
unlock(java.lang.String lockToken)
Unlocks the resource, with the correct locktoken. |
| Method Detail |
|---|
void delete()
throws DAVException,
java.rmi.RemoteException
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
void getContents(java.io.File fileData)
throws DAVException,
java.rmi.RemoteException
fileData - The file into which the contents of the resource should be written.
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
byte[] getContents()
throws DAVException,
java.rmi.RemoteException
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
java.lang.String getContentsAsString()
throws DAVException,
java.rmi.RemoteException
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
java.lang.String getContentType()
throws DAVException,
java.rmi.RemoteException
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.contentType(),
setContentType(String)
org.apache.http.entity.ContentType contentType()
throws DAVException,
java.rmi.RemoteException
null if no MIME type has been specified.
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.getContentType(),
setContentType(String)
java.io.InputStream getContentsInputStream()
throws DAVException,
java.rmi.RemoteException
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
int getStatusCode()
throws DAVException,
java.rmi.RemoteException
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
java.lang.String getStatusMessage()
throws DAVException,
java.rmi.RemoteException
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
java.net.URL getURL()
throws DAVException,
java.rmi.RemoteException
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
boolean isCollection()
throws DAVException,
java.rmi.RemoteException
true if it is a collection, false otherwise.
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
boolean isLocked()
throws DAVException,
java.rmi.RemoteException
true if it is locked, false otherwise.
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
java.lang.String lock()
throws DAVException,
java.rmi.RemoteException
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
DAVResource move(java.lang.String targetUrl)
throws DAVException,
java.rmi.RemoteException
targetUrl - The destination URL for this copy.
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
void removeProperties(PropertyName[] propNames)
throws DAVException,
java.rmi.RemoteException
propNames - An array of property names that should be removed.
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
void removeProperties(org.w3c.dom.Element[] propNames)
throws DAVException,
java.rmi.RemoteException
propNames - An array of property names that should be removed.
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
void removeProperty(org.w3c.dom.Element propName)
throws DAVException,
java.rmi.RemoteException
propName - The name of a property that should be removed from this DAV resource.
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
void removeProperty(java.lang.String propName)
throws DAVException,
java.rmi.RemoteException
propName - The name of a property that should be removed from this DAV resource.
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
void removeProperty(PropertyName propName)
throws DAVException,
java.rmi.RemoteException
propName - The name of a property that should be removed from this DAV resource.
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
void setContents(byte[] contents)
throws DAVException,
java.rmi.RemoteException
contents - The byte array containing the content for this DAV resource.
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
void setContents(java.net.URL url)
throws DAVException,
java.rmi.RemoteException
url - A URL that represents the content for this DAV resource.
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
void setContents(java.lang.String content)
throws DAVException,
java.rmi.RemoteException
content - The string containing the content for this DAV resource.
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
void setContents(java.io.InputStream is)
throws DAVException,
java.rmi.RemoteException
InputStreamAdapter.
is - An input stream representing the content for this DAV resource.
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
void setContentType(java.lang.String contentType)
throws DAVException,
java.rmi.RemoteException
contentType - The content type for this DAV resource.
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.contentType(),
getContentType()
void setProperties(org.w3c.dom.Element[] props)
throws DAVException,
java.rmi.RemoteException
props - An array of properties to be set on this DAV resource.
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
void setProperties(PropertyName[] propNames,
java.lang.String[] propValues)
throws DAVException,
java.rmi.RemoteException
propNames - An array of property names to be set on this DAV resource.propValues - An array of property values to be set on this DAV resource.
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
void setProperties(org.w3c.dom.DocumentFragment props)
throws DAVException,
java.rmi.RemoteException
props - An XML document fragment that defines the properties to be set on this DAV resource.
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
void setProperty(PropertyName propName,
java.lang.String propValue)
throws DAVException,
java.rmi.RemoteException
propName - An property name to be set on this DAV resource.propValue - A property value to be set on this DAV resource.
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
void setProperty(org.w3c.dom.Element prop)
throws DAVException,
java.rmi.RemoteException
prop - An XML element that represents a property to be set on this DAV resource.
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
void unlock()
throws DAVException,
java.rmi.RemoteException
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
void unlock(java.lang.String lockToken)
throws DAVException,
java.rmi.RemoteException
locktoken.
lockToken - The lock token for this DAV resource.
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
boolean getOverwrite()
throws DAVException,
java.rmi.RemoteException
true if the overwrite flag is set, false otherwise
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
void setOverwrite(boolean overwrite)
throws DAVException,
java.rmi.RemoteException
overwrite - The value of the overwrite flag to set on the resource.
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
void setDepth(int depth)
throws DAVException,
java.rmi.RemoteException
DavConstants.DEPTH_0DavConstants.DEPTH_1DavConstants.DEPTH_INFINITY
depth - The depth on which DAV operations will be based. Specify one of DavConstants.DEPTH_0 or DavConstants.DEPTH_1 or DavConstants.DEPTH_INFINITY.
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
int getDepth()
throws DAVException,
java.rmi.RemoteException
DavConstants.DEPTH_0DavConstants.DEPTH_1DavConstants.DEPTH_INFINITY
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.
void close()
throws java.rmi.RemoteException
java.rmi.RemoteException - in the event of network failure.
void setTempDir(java.lang.String tempDir)
throws java.rmi.RemoteException
java.io.tmp system property can be used to set this value
at JVM invocation. If the system property is not set "/temp/" is the
default, but can be overridden with this method.
tempDir - Temporary directory for temporary files.
java.rmi.RemoteException - in the event of network failure.
java.lang.String getTempDir()
throws java.rmi.RemoteException
java.rmi.RemoteException - in the event of network failure.
boolean exists()
throws java.rmi.RemoteException
true if resource exists, false otherwise.
java.rmi.RemoteException - in the event of network failure.
java.lang.String getACL()
throws DAVException,
java.rmi.RemoteException
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.getAcl(),
setACL(String)
java.lang.String setACL(java.lang.String acl)
throws DAVException,
java.rmi.RemoteException
acl - An XML serialized document describing the ACL for this DAV resource.
null if there was no response document.
DAVException - in the event of a WebDAV failure.
java.rmi.RemoteException - in the event of network failure.getACL()
java.lang.String getPath()
throws java.rmi.RemoteException
java.rmi.RemoteException - in the event of a network failure.
void setPath(java.lang.String path)
throws java.rmi.RemoteException
path - The new path for the WebDAV resource.
java.rmi.RemoteException - in the event of a network failure.
boolean makeCollection()
throws DAVException,
java.rmi.RemoteException
DAVException - in the case of a WebDAV error.
java.rmi.RemoteException - in the case of network failures.
boolean SUCCEEDED()
throws java.rmi.RemoteException
true if last method was successful, false otherwise.
java.rmi.RemoteException - in the case of network failures.
DAVResource copy(java.lang.String targetUrl)
throws DAVException,
java.rmi.RemoteException
targetUrl - location to which current resource is to be copied.
DAVException - in the case of a WebDAV error.
java.rmi.RemoteException - in the case of network failures.
void doControl()
throws DAVException,
java.rmi.RemoteException
DAVException - in the case of a WebDAV error.
java.rmi.RemoteException - in the case of network failures.
void doLabel(int labelAction,
java.lang.String label)
throws DAVException,
java.rmi.RemoteException
labelAction - Specifies the action which is to be executed.
LabelInfo#TYPE_SETLabelInfo#TYPE_REMOVELabelInfo#TYPE_ADDlabel - The value of the label.
DAVException - in the case of a WebDAV error.
java.rmi.RemoteException - in the case of network failures.doLabel(int, String, int)
void doLabel(int labelAction,
java.lang.String label,
int depth)
throws DAVException,
java.rmi.RemoteException
labelAction - Specifies the action which is to be executed.
LabelInfo#TYPE_SETLabelInfo#TYPE_REMOVELabelInfo#TYPE_ADDlabel - The value of the label.depth - The depth.
DAVException - in the case of a WebDAV error.
java.rmi.RemoteException - in the case of network failures.doLabel(int, String)
java.util.List getPreviousVersionNames()
throws DAVException,
java.rmi.RemoteException
DAVException - in the case of a WebDAV error.
java.rmi.RemoteException - in the case of network failures.
void doCheckout()
throws DAVException,
java.rmi.RemoteException
DAVException - in the case of a WebDAV error.
java.rmi.RemoteException - in the case of network failures.
void doCheckin()
throws DAVException,
java.rmi.RemoteException
DAVException - in the case of a WebDAV error.
java.rmi.RemoteException - in the case of network failures.
void doUncheckout()
throws DAVException,
java.rmi.RemoteException
DAVException - in the case of a WebDAV error.
java.rmi.RemoteException - in the case of network failures.
com.sas.services.webdav.Version getVersion(java.lang.String versionName)
throws DAVException,
java.rmi.RemoteException
versionName - Which version to retrieve for this DAV resource.
DAVException - in the case of a WebDAV error.
java.rmi.RemoteException - in the case of network failures.
com.sas.services.webdav.Version getCheckedIn()
throws DAVException,
java.rmi.RemoteException
DAVException - in the case of a WebDAV error.
java.rmi.RemoteException - in the case of network failures.
com.sas.services.webdav.Version getCheckedOut()
throws DAVException,
java.rmi.RemoteException
DAVException - in the case of a WebDAV error.
java.rmi.RemoteException - in the case of network failures.
void setExistsRequirement(int requirement)
throws java.rmi.RemoteException
requirement - 0 if we don't care or 1 if it must exist or 2 if it must not exist.
java.rmi.RemoteException - in the case of network failures.
int getExistsRequirement()
throws java.rmi.RemoteException
0 if we don't care or 1 if it must exist or 2 if it must not exist.
java.rmi.RemoteException - in the case of network failures.
com.sas.services.webdav.Acl getAcl()
throws DAVException,
java.rmi.RemoteException
DAVException - in the case of a WebDAV error.
java.rmi.RemoteException - in the case of network failures.getACL(),
setAcl(Acl)
java.lang.String setAcl(com.sas.services.webdav.Acl acl)
throws DAVException,
java.rmi.RemoteException
acl - The access control list to set for this DAV resource.
null if there was no response document.
DAVException - in the case of a WebDAV error.
java.rmi.RemoteException - in the case of network failures.getAcl()
java.util.List getChildrenList(java.lang.String path)
throws DAVException,
java.rmi.RemoteException
path - The path of this DAV resource.
DAVException - in the case of a WebDAV error.
java.rmi.RemoteException - in the case of network failures.void setCredentialsProvider(org.apache.http.client.CredentialsProvider credentialsProvider)
DavPropertyResult getDavProperties()
throws DAVException,
java.rmi.RemoteException
DavPropertyResult which has the DAV properties which were returned by the property find method.
DAVException - in the case of server failures.
java.rmi.RemoteException - in the case of network failures.setDepth(int),
getDavProperties(int)
DavPropertyResult getDavProperties(int depth)
throws DAVException,
java.rmi.RemoteException
depth - The depth on which DAV operations will be based. Specify one of DavConstants.DEPTH_0 or DavConstants.DEPTH_1 or DavConstants.DEPTH_INFINITY.
DavPropertyResult which has the DAV properties which were returned by the property find method.
DAVException - in the case of server failures.
java.rmi.RemoteException - in the case of network failures.getDavProperties()
DavPropertyResult getDavProperties(org.apache.jackrabbit.webdav.property.DavPropertyNameSet davPropertyNameSet,
int depth)
throws DAVException,
java.rmi.RemoteException
davPropertyNameSet - Set of the names of the DAV properties which should be returned.depth - The depth on which DAV operations will be based. Specify one of DavConstants.DEPTH_0 or DavConstants.DEPTH_1 or DavConstants.DEPTH_INFINITY.
DavPropertyResult which has the DAV properties which were returned by the property find method.
DAVException - in the case of server failures.
java.rmi.RemoteException - in the case of network failures.
DavPropertyResult getDavProperties(PropertyName[] propertyNames)
throws DAVException,
java.rmi.RemoteException
propertyNames - Array of property names, specifying which properties should be returned.
DavPropertyResult which has the DAV properties which were returned by the property find method.
DAVException - in the case of server failures.
java.rmi.RemoteException - in the case of network failures.
DavPropertyResult getDavProperties(PropertyName[] propertyNames,
int depth)
throws DAVException,
java.rmi.RemoteException
propertyNames - Array of property names, specifying which properties should be returned.depth - The depth on which DAV operations will be based. Specify one of DavConstants.DEPTH_0 or DavConstants.DEPTH_1 or DavConstants.DEPTH_INFINITY.
DavPropertyResult which has the DAV properties which were returned by the property find method.
DAVException - in the case of server failures.
java.rmi.RemoteException - in the case of network failures.
DavPropertyResult getDavPropertyNames()
throws DAVException,
java.rmi.RemoteException
DavPropertyResult which has the DAV properties which were returned by the property find method.
DAVException - in the case of server failures.
java.rmi.RemoteException - in the case of network failures.getDavPropertyNames(int),
setDepth(int)
DavPropertyResult getDavPropertyNames(int depth)
throws DAVException,
java.rmi.RemoteException
depth -
DavPropertyResult which has the DAV properties which were returned by the property find method.
DAVException - in the case of server failures.
java.rmi.RemoteException - in the case of network failures.getDavPropertyNames()
DavPropertyResult doReport(org.apache.jackrabbit.webdav.version.report.ReportInfo reportInfo)
throws DAVException,
java.rmi.RemoteException
ReportInfo parameter specifies the following information.
reportInfo - Information which specifies the desired report.
DavPropertyResult which has the DAV properties which were returned by the property report method.
DAVException - in the case of server failures.
java.rmi.RemoteException - in the case of network failures.
DavPropertyResult doSearch(org.apache.jackrabbit.webdav.search.SearchInfo searchInfo)
throws DAVException,
java.rmi.RemoteException
searchInfo - The search criteria.
DavPropertyResult which has the DAV properties which were returned by the property find method.
DAVException - in the case of server failures.
java.rmi.RemoteException - in the case of network failures.
|
| Foundation |
|
| |||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||||||