source: default/trunk/de.ugoe.cs.swe.bnftools.ebnf.ui/src/de/ugoe/cs/swe/bnftools/ui/formatter/EbnfHtmlFormatterVisitor.java @ 34

Last change on this file since 34 was 34, checked in by zeiss, 14 years ago
  • Property svn:mime-type set to text/plain
File size: 333 bytes
Line 
1package de.ugoe.cs.swe.bnftools.ui.formatter;
2
3import org.eclipse.emf.ecore.EObject;
4
5public class EbnfHtmlFormatterVisitor extends EbnfFormatterVisitor {
6
7        public EbnfHtmlFormatterVisitor(EObject rootNode, FormatterConfig config) {
8                super(rootNode, config);
9                this.config = config;
10                buf = new StringBuffer();
11        }
12
13
14}
Note: See TracBrowser for help on using the repository browser.