How to set the docType of an IDOMDocument [message #486573] |
Fri, 18 September 2009 05:21  |
Eclipse User |
|
|
|
Hi,
I'm trying to create / update an XML file using the SSE API.
After loading an IDOMModel (using StructuredModelManager.getModelManager().getNewModelForEdit or getModelForEdit ) I need to add a doctype, or update it if needed.
IDOMDocument has a createDocType method but I haven't found a way to attach this new docType to the IDOMDocument.
Also, if IDOMDocument.getDocType is not null, how can I update its value?
thanks,
regards,
|
|
|
Re: How to set the docType of an IDOMDocument [message #486667 is a reply to message #486573] |
Fri, 18 September 2009 10:47   |
Eclipse User |
|
|
|
Fred Bricon wrote:
> Hi,
>
> I'm trying to create / update an XML file using the SSE API.
> After loading an IDOMModel (using
> StructuredModelManager.getModelManager().getNewModelForEdit or
> getModelForEdit ) I need to add a doctype, or update it if needed.
>
> IDOMDocument has a createDocType method but I haven't found a way to
> attach this new docType to the IDOMDocument.
>
> Also, if IDOMDocument.getDocType is not null, how can I update its value?
>
> thanks,
>
> regards,
Hi Fred,
You should be able to insert the doctype node into the DOM just like any
other node (e.g., using your IDOMDocument reference,
document.appendChild(docType) or document.insertBefore(docType,
referenceNode)).
If you're editing an existing doctype, you can change the public and
system ID's via docType.setPublicId(id) and docType.setSystemId(id),
respectively. In order to change the root element name, you will have to
create a new doctype, remove the old doctype, and add the new doctype to
the document.
|
|
|
|
Powered by
FUDForum. Page generated in 0.02800 seconds