Agile & Lean Management

Refactoring the Software Development Process

Browsing Posts tagged code-generation

The model-driven code generation process is really simple. You create a model, for example using UML. Next, you feed a hungry generator with your model in a format it can digest. That could be XMI. The model-driven generator (MDG) transforms your model into code using a template of some kind. Here it outputs C# code [...]

The Search-Engine pattern is a simple, but powerful pattern. The user provides some sort of search phrase and the search engine returns all matches found in a data store. Next, the user browses the results to select the one she is looking for. When selected details are shown. This is exactly how Google (and other [...]