deleteDirective(name)
|
Deletes all the directive values associated
to the specified directive name.
|
deleteDirectives(name, values)
|
Deletes only the given values for the specified
directive name.
|
deleteMeta(name)
|
Deletes all the meta values associated to the
specified meta name.
|
deleteMetas(name, values)
|
Deletes only the given meta values from the
specified meta name.
|
deleteParts(name)
|
Deletes the document parts related to the specified
part name.
|
deleteParts(name, documentParts)
|
Deletes all the part directive values for the
specified part name.
|
setDirective(name, value)
|
Assigns the given value to the specified directive
name.
|
setAllDirectives(directives)
|
Assigns all the directive name/values associated
to the current document.
|
setMeta(name, value)
|
Assigns the given meta value to the specified
meta name.
|
setMeta(name, values)
|
Assigns the given meta values to the specified
meta name.
|
setAllMetas(metas)
|
Assigns all the meta name/values associated
to the current document.
|
setPart(name, docPart)
|
Assigns the given document part to the specified
part name.
|
setParts(name, docParts)
|
Assigns the given document parts to the specified
part name.
|
setAllParts(parts)
|
Assigns all the parts associated to the current
document.
|
withDirective(name, value)
|
Adds the value of a specific directive to the possible list of predefined
directive values. If none is defined, a new list is created.
|
withDirectives(name, values)
|
Adds the values of a specific directive to the possible list of predefined
directive values. If none is defined, a new list is created.
|
withDirectives(directives)
|
Adds the list of directive key-values to the
possible list of predefined directive values.
|
withMeta(name, value)
|
Adds the value of a specific meta to the possible list of predefined meta values.
If none is defined, a new list is created.
|
withMeta(name, values)
|
Adds the values of a specific meta to the possible list of predefined meta
values. If none is defined, a new list is created.
|
withMetas(metas)
|
Adds the list of meta key-values to the possible
list of predefined meta values.
|
withPart(name, docPart)
|
Adds the document part to the list of existing predefined parts. If none is
defined, a new list is created.
|
withPart(name, docParts)
|
Adds the sequence of document parts to the list of existing predefined parts. If
none is defined, a new list is created.
|
withParts(allParts)
|
Adds the list of parts associated to the current
document.
|