GoogleCodeArchives / editra

Automatically exported from code.google.com/p/editra
Other
0 stars 0 forks source link

[patch] CodeBrowser support for Java #466

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
This patch adds a tagger for Java. The code is pretty simplistic, based on
regexes like dtags.py, not on a lexer. However, I'm using it every day for
my job, so it should be quite stable.

This patch also adds the ability to change the label "Class Definitions" in
cbrowser.py like you alreay can for variables.

Original issue reported on code.google.com by gaudet.e...@gmail.com on 29 Jan 2010 at 11:03

Attachments:

GoogleCodeExporter commented 9 years ago
Applied Thanks!

Found one issue in a quick test, it will not find methods inside a class if the 
{ is
on the same line as the method definition.

i.e)

Doesnt Find:

private static void createAndShowGUI() {

Does Find:

private static void createAndShowGUI()
{

Original comment by CodyPrec...@gmail.com on 30 Jan 2010 at 12:06

GoogleCodeExporter commented 9 years ago

Original comment by CodyPrec...@gmail.com on 30 Jan 2010 at 12:06