DrJava compiler window query

View: New views
2 Messages — Rating Filter:   Alert me  

DrJava compiler window query

by Coull, Natalie :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

DrJava compiler window query

We are looking to change the IDE that we use with our 1st year programming students. The IDE that we use must be compatible with our existing support-software that captures and extends the compiler errors with context sensitive messages.

A limitation of the current IDE that we use is that we can't include hyperlinks in the extended compiler messages when they're displayed in the normal compiler error window. Does anyone know if the DrJava compiler window allows hyperlinks to be displayed ?

Thanks,

Natalie Coull
Research Assistant
School of Computing & Creative Technologies
University of Abertay Dundee


Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

_______________________________________________
Drjava-users mailing list
Drjava-users@...
https://lists.sourceforge.net/lists/listinfo/drjava-users

Re: DrJava compiler window query

by mgricken :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,

My name is Mathias, I'm one of the developers of DrJava. I'm sorry if I didn't reply in time, I didn't know this forum existed.


> We are looking to change the IDE that we use with our 1st year programming students. The IDE that we use must be compatible with our existing support-software that captures and extends the compiler errors with context sensitive messages.
>
> A limitation of the current IDE that we use is that we can't include hyperlinks in the extended compiler messages when they're displayed in the normal compiler error window. Does anyone know if the DrJava compiler window allows hyperlinks to be displayed ?

DrJava can *display* hyperlinks in the compiler error window, provided they ever came up, or in the interactions pane, e.g. as part of a runtime exception. The latter, for example, could look like this:

> throw new RuntimeException("http://drjava.org");
RuntimeException: http://drjava.org
  at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
  at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
  at java.lang.reflect.Constructor.newInstance(Constructor.java:494)

What we currently do NOT to is let the user click on something that looks like it might be a hyperlink ("http://" or "www.") to open a website. We *could* do that, though, but it would be great to know exactly what you want.

Please head over to our SourceForge DrJava project's page at

http://sourceforge.net/tracker/?group_id=44253&atid=438938

and submit a new feature request that shows the kinds of hyperlinks you want to see, where they would come from, and what should happen when you click on one.

Thank you for using DrJava.

--Mathias