[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.webtools] Re: Serializing Documenation elements

Ravi,

Are you using the WSDL models as standalone models? If so, maybe you need to manually sync the changes from the DOM to the EMF models.

See if the following line helps or not?

     try {
====>       definition.elementChanged(definition.getElement());
           definition.eResource().save(null);
       } catch (IOException e) {
           // TODO Auto-generated catch block
           e.printStackTrace();
       }

Raymond