This should be a good tutorial. I need to look into it:
http://www.ibm.com/developerworks/edu/os-dw-os-ecl-commplgin1.html
I know there is an excellent tutorial in Chinese. It demos how to craft a source code editor using Eclipse JFace Text Framework and a bit ANTLR. The link is here.
Here are some tutorial links for learning antlr v3:
- The Getting Started Tutorial from Official Site is Damn Good!
- ANTLR Works is a damn good tool!
- The Definitive Antlr Reference is a good book
- ANTLR 3.X Tutorials are good video course and introduced a damn good eclipse tool: ANTLR IDE.
After installing Ubuntu 9.10, eclipse became naughty. I tried to create a Java Project. However, mouse-click on Next/Finish buttons didn’t work. The buttons got focused, but no response. So you have to press ENTER or SPACE to actually press the buttons.
A quick fix here: create a shell script. For example, eclipse.sh:
export GDK_NATIVE_WINDOWS=1
/home/frankdu/Developer/eclipse/eclipse
Then add executable permission to the file: chmod +x ./eclipse.sh
Every time you run eclipse.sh to launch eclipse. At least we can be happy for a while. Please see http://www.eclipse.org/forums/index.php?t=msg&goto=498640& for more information.