| Update of /cvsroot/ccmtools/ccmtools/doc/DevelopmentNotes/JetTemplates
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv6663/doc/DevelopmentNotes/JetTemplates
Added Files:
	JetTemplatesHowTo.txt 
Log Message:
Added development notes
--- NEW FILE: JetTemplatesHowTo.txt ---
Java Emitter Templates (JET)
============================
The JET engine (a tool that compiles the *.jet template files into *.java 
source files) is part of the Eclipse Modeling Framework (EMF) PlugIn. 
Thus, we can only generate Java template classes from *.jet files by using the 
Eclipse platform (or significant parts of it).
Therefore, all generated template classes are also checked in 
(e.g. ccmtools.generator.java.templates).
For more informations about JET, see:
    http://eclipse.org/articles/Article-JET/jet_tutorial1.html
    http://eclipse.org/articles/Article-JET2/jet_tutorial2.html
    
    
Eclipse Settings:    
-----------------
To use the Jet engine for the ccmtools project, we have to configure the eclipse
project properties:
Menu Project => Properties => Jet Settings:
    
    Template Containers: src/ccmtools/generator/java/templates/jet;src/ccmtools/generator/idl/templates/jet
    
    Source Container   : src    
    
 |