Is inheritance possible in JFlex? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T00:35:40Z http://stackoverflow.com/feeds/question/553757 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/553757/is-inheritance-possible-in-jflex 0 Is inheritance possible in JFlex? Tom Martin 2009-02-16T15:51:51Z 2009-02-16T16:39:04Z <p>I'm fairly new to JFlex and JSyntaxPane although I have managed to hack together a <a href="http://code.google.com/p/jsyntaxpane/source/browse/branches/r095/jsyntaxpane/src/main/jflex/jsyntaxpane/lexers/xpath.flex" rel="nofollow">lexer for XPath</a>.</p> <p>The problem I find myself in is that I'm working on a project that supports a subset of XPath with a few proprietary features. Nasty I know.</p> <p>If this were a regular Java problem I'd turn to inheritance but it doesn't seem possible to achieve inheritance by having one lexer extend a previously generated one.</p> <p>e.g</p> <pre><code>import jsyntaxpane.Token; import jsyntaxpane.TokenType; %% %public %class ProprietaryLexer %extends XPathLexer %unicode %char %type Token </code></pre> <p>This seems to cause a load of errors telling me I can't extend some final methods. Is this a problem specific to the DefaultJFlexLexer in JSyntaxpane or am I just doing it wrong? Has anyone been in a similar situation and found a way to achieve some kind of ad hoc inheritance in a bunch of lexers?</p> http://stackoverflow.com/questions/553757/is-inheritance-possible-in-jflex/553931#553931 1 Answer by mmyers for Is inheritance possible in JFlex? mmyers 2009-02-16T16:39:04Z 2009-02-16T16:39:04Z <p>JFlex generates several final methods, hence the errors. I can think of two possible workarounds:</p> <ol> <li>Simply copy the rules from <code>XPathLexer</code> into <code>ProprietaryLexer</code> and extend them as necessary.</li> <li>(dangerous) Modify the skeleton file to not have final methods, then proceed as you were doing. I have never attempted this, so I can't guarantee that it will even compile.</li> </ol> <p>It would certainly be nice if JFlex had an <code>%inherit</code> command, though.</p>