DSJQuery |
DSJQuery.addKeyword(java.lang.String keywordToAdd) |
Adds a new keyword to the comma-separated keyword list for each DSObject.
|
DSJQuery |
DSJQuery.append(DSJQuery newChildren) |
Links all child elements under the current set of collections.
|
DSJQuery |
DSJQuery.attr(java.lang.String attributeName,
java.lang.Object value) |
Sets an attribute across all current objects.
|
DSJQuery |
DSJQuery.children() |
Retrieves the immediate descendants for all selected collections.
|
DSJQuery |
DSJQuery.children(java.lang.String filterSelector) |
Retrieves the immediate descendants for all selected collections which satisfy a given filter.
|
DSJQuery |
DSJQuery.clone() |
Creates a new DSJQuery object with the same set of matching objects.
|
DSJQuery |
DSJQuery.filter(java.lang.String filterSelector) |
Reduces the set of objects to those that match the given selector.
|
DSJQuery |
DSJQuery.filter_byObjectClass(java.lang.String className) |
Reduces the set of objects to those of a given object class.
|
DSJQuery |
DSJQuery.filter_byProperty_contains(java.lang.String propertyName,
java.lang.String propertyValue,
boolean ignoreCase) |
Reduces the set of objects to those with property values containing a given value.
|
DSJQuery |
DSJQuery.filter_byProperty_endsWith(java.lang.String propertyName,
java.lang.String propertyValue,
boolean ignoreCase) |
Reduces the set of objects to those with property values ending with a given value.
|
DSJQuery |
DSJQuery.filter_byProperty_equals(java.lang.String propertyName,
java.lang.String propertyValue,
boolean ignoreCase) |
Reduces the set of objects to those with property values equal to a given value.
|
DSJQuery |
DSJQuery.filter_byProperty_startsWith(java.lang.String propertyName,
java.lang.String propertyValue,
boolean ignoreCase) |
Reduces the set of objects to those with property values starting with a given value.
|
DSJQuery |
DSJQuery.find(java.lang.String findSelector) |
Searches beneath all currently selected Collections for Documents and Collections
that match the given selector.
|
DSJQuery |
DSJQuery.find_all() |
Searches beneath all currently selected Collections
for all Documents and Collections.
|
DSJQuery |
DSJQuery.find_byHandle(java.lang.String handle) |
Searches beneath all currently selected Collections
for objects with the given handle.
|
DSJQuery |
DSJQuery.find_byObjectClass(java.lang.String className) |
Searches beneath all currently selection Collections
for objects with a given object class.
|
DSJQuery |
DSJQuery.first() |
Filters the current set of documents and collections to only include the first one.
|
DSJQuery |
DSJQuery.insertAndGet(java.io.File file) |
Uploads a new Document to DocuShare under each Collection in the set.
|
DSJQuery |
DSJQuery.insertCollectionAndGet(java.lang.String collectionName) |
Creates a new Collection under each Collection in the set.
|
DSJQuery |
DSJQuery.print() |
For debug purposes, outputs the handles and titles of objects currently the DSJQuery object.
|
DSJQuery |
DSJQuery.removeAttr(java.lang.String attributeName) |
Clears an attribute across all current objects.
|
DSJQuery |
DSJQuery.removeKeyword(java.lang.String keywordToRemove) |
Removes the first instance of a keyword from the keyword list if it is found.
|
DSJQuery |
DSJQuery.reverse() |
Reverses the order of the current set of objects.
|
DSJQuery |
DSJQuery.sort(java.util.Comparator<com.xerox.docushare.DSObject> comparator) |
Sorts the current set of objects using a Comparator.
|
DSJQuery |
DSJQuery.sortAsc_byAttribute(java.lang.String attributeName) |
Sorts the current set of objects in ascending order by an attribute.
|