fastcodejava
fastcodejava

Reputation: 41117

Code generation in Eclipse

What is the most useful code generation tool in eclipse, velocity or jet templates? Anybody has experience with both of them and know the pro and cons?

Upvotes: 4

Views: 543

Answers (3)

lgu
lgu

Reputation: 2460

In the Telosys Eclipse plugin we are using Velocity 1.7 ( for scaffolding and for wizards )

It works fine and it can be embedded in a plugin

To try it : http://marketplace.eclipse.org/content/telosys-tools
For more information : http://www.telosys.org/

Upvotes: 6

ovunccetin
ovunccetin

Reputation: 8683

You can also use AST (Abstract Syntax Tree) API in eclipse JDT.

Upvotes: 1

duffymo
duffymo

Reputation: 309008

I don't know about Jet, but I like Velocity very much. I especially like the fact that it looks so much like the end product. I think it makes things easier than something like JSP for generating HTML.

Upvotes: 1

Related Questions