Message:

  A new issue has been created in JIRA.

---------------------------------------------------------------------
View the issue:
  http://issues.apache.org/jira/browse/XERCESC-1223

Here is an overview of the issue:
---------------------------------------------------------------------
        Key: XERCESC-1223
    Summary: Change importNode in DOMDocument to a const DOMNode*
       Type: Wish

     Status: Unassigned
   Priority: Minor

    Project: Xerces-C++
 Components: 
             DOM
   Versions:
             2.5.0

   Assignee: 
   Reporter: Nicholas Komick

    Created: Wed, 2 Jun 2004 5:36 PM
    Updated: Wed, 2 Jun 2004 5:36 PM
Environment: All implementations.

Description:
The DOMDocument::importNode method takes a DOMNode*.  

To improve consistency it would be nice to have the pointer passed to the import be a 
const DOMNode*.


The method currently looks like:

DOMNode* DOMDocument::importNode (DOMNode *importedNode, bool deep);

but seeing as the importedNode shouldn't change with the call, the method could be 
changed to:

DOMNode* DOMDocument::importNode (const DOMNode *importedNode, bool deep);






---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to