Skip Headers
Oracle® Database XML C++ API Reference
11g Release 1 (11.1)

Part Number B28389-01
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Index
Index
Go to Master Index
Master Index
Go to Feedback page
Contact Us

Go to previous page
Previous
Go to next page
Next
View PDF

DOMImplementation Interface

Table 2-8 summarizes the methods available through DOMImplementation interface.

Table 2-8 Summary of DOMImplementation Methods; Dom Package

Function Summary

DOMImplementation()


Constructor.

getNoMod()


Get the 'nomodificationallowed' flag value.

~DOMImplementation()


Public default destructor.



DOMImplementation()

Creates DOMImplementation object. Sets the 'no modifications allowed' flag to the parameter value.

Syntax

DOMImplementation( 
   boolean no_mod);
Parameter Description
no_mod
whether modifications are allowed (FALSE) or not allowed (TRUE)

Returns

(DOMImplementation) implementation object


getNoMod()

Get the 'no modification allowed' flag value. This is an Oracle extension.

Syntax

boolean getNoMod() const; 

Returns

TRUE if flag's value is TRUE, FALSE otherwise


~DOMImplementation()

This is the default destructor. It removes all DOM trees associated with this object.

Syntax

~DOMImplementation();