Skip to main content



      Home
Home » Language IDEs » ServerTools (WTP) » How to set the docType of an IDOMDocument
How to set the docType of an IDOMDocument [message #486573] Fri, 18 September 2009 05:21 Go to next message
Eclipse UserFriend
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 Go to previous messageGo to next message
Eclipse UserFriend
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.
Re: How to set the docType of an IDOMDocument [message #486795 is a reply to message #486667] Sat, 19 September 2009 02:15 Go to previous message
Eclipse UserFriend
It works fine, thanks Nick.

regards
Previous Topic:XSLT extensions
Next Topic:Re: HELP installing org.eclipse.wst.common.emf
Goto Forum:
  


Current Time: Thu Jul 24 18:13:09 EDT 2025

Powered by FUDForum. Page generated in 0.03132 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top