| Oracle® XML API Reference 10g Release 1 (10.1) Part Number B10789-01 |
|
|
View PDF |
Table 15-8 summarizes the methods of available through DOMImplementation interface.
Table 15-8 Summary of DOMImplementation Methods; Dom Package
| Function | Summary |
|---|---|
| DOMImplementation |
Constructor. |
| getNoMod |
Get the 'nomodificationallowed' flag value. |
| ~DOMImplementation |
Public default destructor. |
Creates DOMImplementation object. Sets the 'no modifications allowed' flag to the parameter value.
DOMImplementation( boolean no_mod);
| Parameter | Description |
|---|---|
no_mod |
whether modifications are allowed (FALSE) or not allowed (TRUE) |
(DOMImplementation) implementation object
Get the 'no modification allowed' flag value. This is an Oracle extension.
boolean getNoMod() const;
TRUE if flag's value is TRUE, FALSE otherwise
This is the default destructor. It removes all DOM trees associated with this object.
~DOMImplementation();