I want to generate code through EMF in Web page Editor in Eclipse.I am able to add my category in palette.But i have no knowledge about schema & exsd.Please tell me where i can get proper knowledge regarding it?

link|improve this question

50% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Read EMF: Eclipse Modeling Framework (2nd Edition) by Dave Steinberg, Frank Budinsky, Marcelo Paternostro and Ed Merks (Dec 26, 2008).

It is the bible when it comes to EMF...

link|improve this answer
Thanks,Actually i want to generate code of components while i drag them from palette.For example i have dragged button from palette then corresponding code <input type="button"> should get generated in Editor.What is the way to do it?Is it possible with EMF. – Eshika Jun 24 '11 at 4:46
Yes, it is... Though, I would probably create an internal model and maintain this in the editor and then let the generation of the external file be a separate step. And I would use Xpand for the generation, btw... – Tonny Madsen Jun 24 '11 at 6:46
I have created component with GEF.But i am not able to connect it through EMF for code generation.Can you plz explain me in detail that how to connect this model to EMF Code generation. – Eshika Jun 28 '11 at 6:43
It depends a lot on your concrete syntax (the external representation) compared to the abstract syntax (the internal data model). Assume your abstract syntax is optimal as a representation for your GEF EditParts and your GEF code is based on this, then the interesting question is whether you can "just" externalize this abstract model using a XMLResource to get you external representation. There is a complete chapter on this in the EMF book. If this is not possible, then you can have an JET or - probably better - an Xpand/Xtend transformation to do the the work. – Tonny Madsen Jun 28 '11 at 7:31
Thanks for reference.I am trying code generation with Xpand and following link eclipse.dzone.com/articles/getting-started-code but i am not able to generate HTML file.Can you please help me out. – Eshika Jul 4 '11 at 6:38
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.