Index: v2/trunk/de.ugoe.cs.swe.bnftools.ebnf/src/de/ugoe/cs/swe/bnftools/generator/EbnfGenerator.xtend
===================================================================
--- v2/trunk/de.ugoe.cs.swe.bnftools.ebnf/src/de/ugoe/cs/swe/bnftools/generator/EbnfGenerator.xtend	(revision 98)
+++ v2/trunk/de.ugoe.cs.swe.bnftools.ebnf/src/de/ugoe/cs/swe/bnftools/generator/EbnfGenerator.xtend	(revision 99)
@@ -24,4 +24,5 @@
 import org.eclipse.core.resources.ResourcesPlugin
 import de.ugoe.cs.swe.bnftools.ebnf.RepeatRange
+import de.ugoe.cs.swe.bnftools.ebnf.Comment
 
 /**
@@ -111,4 +112,7 @@
 			«bnfEntry.sectionheader.compile»
 		«ENDIF»
+		«IF bnfEntry.comment!= null»
+			«bnfEntry.comment.compile»
+		«ENDIF»
 	'''
 	
@@ -118,4 +122,10 @@
 		
 	'''
+	def compile(Comment comment) '''
+		
+		<fo:block><fo:inline color="#00AA00">«comment.content.replaceAll('<','&lt;').replaceAll('>','&gt;')»</fo:inline></fo:block>
+		
+	'''
+
 
 	def compile(Rule rule) '''<fo:block><fo:inline id="«rule.name»"	color="black">«IF rule.rulenumber != 0»«rule.
