Skip to content

December 2, 2008

2

Software Engineering Radio: Eelco Visser on Parsing

In the current SE-Radio episode, Laurence Tratt interviews Eelco Visser on Parsing.

If you're interested in Domain Specific Languages (DSLs), you should take some time to listen to this episode. Especially the part on scanner-less parsing is very interesting, as it allows to mingle code from different languages in one single file.

Thanks for reading this post. Follow me on twitter here to be notified about updates and other posts I write. Or, subscribe to my RSS feed here

Fork me on GitHub
Read more from Computer, Eclipse, MDSD
  • Torben

    Hello,

    nice blog by the way!

    Actually, I hava a question regarding an older blog post from you (for which the comments are already closed, unfortunately). The question is about the org.eclipse.jdt.core.JavaCodeFormatter mentioned in http://www.peterfriese.de/formatting-your-code-using-the-eclipse-code-formatter/

    I have digged through all eclipse/plugings/*.jar files but could not find the org.eclipse.jdt.core.JavaCodeFormatter Java class. Where can I find it?

    The actual reason is that I am looking for a way to format XML/XSD files with an equivalent code formatter for XML. Would that be possible at all?

    Thanks and best regards,
    Torben

  • http://www.peterfriese.de Peter

    Torben,

    thanks for your kind words!

    Regarding the code formatter: the class has been renamed & move to org.eclipse.jdt.core.formatter.CodeFormatter. You might want to check out this forum posting regarding XML formatting: http://www.openarchitectureware.org/forum/viewtopic.php?forum=2&showtopic=9800&highlight=beautifier

    Peter