Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EMF/ExtendingCodeGeneration"

< EMF
(Summary)
Line 5: Line 5:
 
The a reference implementation is the project org.eclipse.emf.examples.generator.validator  
 
The a reference implementation is the project org.eclipse.emf.examples.generator.validator  
 
(see :pserver:anonymous@dev.eclipse.org:/cvsroot/modeling under org.eclipse.emf/org.eclipse.emf/examples)
 
(see :pserver:anonymous@dev.eclipse.org:/cvsroot/modeling under org.eclipse.emf/org.eclipse.emf/examples)
 +
 +
 +
=  GeneratorAdapter Class =
 +
 +
The definition links like this
 +
 +
<source lang="java">
 +
public class GenClassValidatorGeneratorAdapter extends GenBaseGeneratorAdapter
 +
{
 +
</source>
  
 
= Links =  
 
= Links =  

Revision as of 07:24, 5 January 2011

Summary

The intension of this page to collect experiences of implementing a Generation Adapter.

The a reference implementation is the project org.eclipse.emf.examples.generator.validator (see :pserver:anonymous@dev.eclipse.org:/cvsroot/modeling under org.eclipse.emf/org.eclipse.emf/examples)


GeneratorAdapter Class

The definition links like this

public class GenClassValidatorGeneratorAdapter extends GenBaseGeneratorAdapter
{

Links

Back to the top