vote up 3 vote down star
4

If you use one of course, which one?

  • MyGeneration
  • T4
  • UML Transformation Tool (precise which one)
  • ...
  • All others not listed above since there are so many
flag

12 Answers

vote up 0 vote down

Eclipse Xpand and Xtext, also known as openArchitectureWare.

link|flag
vote up 0 vote down

I use for generating code from UML:

  1. Visual Paradigm for UML
  2. Netbeans IDE + UML plugin

For editing/ generating GUI's:

  1. Netbeans IDE
  2. MS Visual Studio

For anything else

Python (because I find it's just the quickest way to hack something together).

link|flag
vote up 1 vote down

I'm using the following code generators:

  • Visio Enterprise Architect for generating SQL scripts for creating and updating databases
  • NConstruct for generating NHibernate mapping files and sometimes for generating "first draft" of an application
  • Visual Studio for generating UI design files, project and solution files etc.
  • Jet Brains Resharper for lots of code snippets, template based chunks of code etc.

I believe my productivity would be much lower without code generation tools. Code generators usually don't produce bugs in generated code so this is also a good reason to use them.

link|flag
vote up 0 vote down

DMS Software Reengineering Toolkit

Can be configured to read any style of specification language, and generate code including post-code generation optimization.

link|flag
Link doesn't seem to work now. – Rebol Tutorial Sep 14 at 18:26
Website was down temporarily. Link works now. – Ira Baxter Sep 14 at 22:17
vote up 2 vote down

"Normal" code-gen tools I use that many people don't think about:

  • Windows Forms designer
  • XAML for WPF UIs
  • LINQ to SQL

Other code gen tools that are obviously code gen in the project:

  • ANTLR
  • Custom tools I wrote such as one that turns an Excel spreadsheet (File.xlsx) into code (File.g.cs)
link|flag
vote up 0 vote down

I often write code generation scripts in Python. In the distant past I have also used Perl. Either language is well-suited to the task.

link|flag
Do you use python to generate python or something else ? – Rebol Tutorial Sep 14 at 18:27
I use Python to generate Java. It's worth noting that I am not generating classes from UML or anything like that; I am generating classes that contained large numbers of constants. This meant that we load constant data using the classloader instead of reading it from a file, which allows us a speed boost (the embedded system we work on has a poorly-implemented version of the JVM; many base classes have to be avoided because of poor performance. – Imagist Sep 15 at 0:35
vote up 0 vote down

Jeeves (discussed in Advanced Perl Programming).

I have a pre-build step in VS 2005 that executes Jeeves to produce source code "just in time" for compilation/linking.

link|flag
What is Jeeves can't find any link ? – Rebol Tutorial Sep 14 at 18:28
vote up 0 vote down

I just started playing with the code generation features of Enterprise Architect. It's nice having code generated from the model instead of the database layer, but unfortunately their code-gen tool is a bit unwieldy. So far I've tweaked its C# template to produce bare-bones CSLA classes which at least saves me a lot of typing.

link|flag
vote up 3 vote down

Eclipse EMF and JET.

link|flag
vote up 2 vote down

CodeSmith Studio - lots of great sample templates that work with it.

link|flag
excellent tool - I gave up on T4 and went back to CodeSmith after T4 templates weren't able to be configured to pick a server/database/table as properties, rather than hardcoded in the template code... – marc_s Aug 28 at 14:24
vote up 13 vote down

Do my hands count? :)

link|flag
5  
+1 awesome comment – LorenVS Aug 28 at 14:22
Notepad – Velika Sep 1 at 21:28
vote up 0 vote down

I tend to avoid code generation and generate dynamic functionality at runtime, using either C# DynamicMethods or C# Lambda Expressions... I prefer not to have generated code in my solutions...

link|flag
why? you love typing all that boring, repetitive code manually? – marc_s Aug 28 at 14:24
3  
It's only boring and repetitive if you're doing it wrong. – Charlie Salts Aug 28 at 14:56
1  
In the traditional app, there's an absolute TON of pretty boilerplate code -- why on earth would someone want to rewrite that every time? Perhaps you work on something very specialized and/or new each time LorenVS? – DarkSquid Sep 1 at 21:45
@Charlie, not always your language of choice can abstract you from repetitive code and even if it can, it might not be practical for performance reasons. – lubos hasko Sep 10 at 8:43

Your Answer

Get an OpenID
or

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