[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.webtools] Re: Serializing Documenation elements
|
- From: rkklai@xxxxxxxxxx (Raymond Lai)
- Date: Tue, 19 May 2009 21:26:06 +0000 (UTC)
- Newsgroups: eclipse.webtools
- Organization: Eclipse
- User-agent: NewsPortal/0.36 (http://florian-amrhein.de/newsportal)
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