You can subscribe to this list here.
2002 |
Jan
(17) |
Feb
(80) |
Mar
(56) |
Apr
(79) |
May
(9) |
Jun
(60) |
Jul
(29) |
Aug
(40) |
Sep
(23) |
Oct
(6) |
Nov
(25) |
Dec
(3) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(17) |
Feb
(85) |
Mar
(22) |
Apr
(3) |
May
(18) |
Jun
(27) |
Jul
(38) |
Aug
(19) |
Sep
(15) |
Oct
(6) |
Nov
(2) |
Dec
(5) |
2004 |
Jan
(19) |
Feb
(26) |
Mar
(30) |
Apr
(29) |
May
(8) |
Jun
(28) |
Jul
(39) |
Aug
(17) |
Sep
(19) |
Oct
(12) |
Nov
(18) |
Dec
(9) |
2005 |
Jan
(5) |
Feb
(18) |
Mar
(4) |
Apr
(5) |
May
(9) |
Jun
(10) |
Jul
(15) |
Aug
(11) |
Sep
(6) |
Oct
(6) |
Nov
(11) |
Dec
(6) |
2006 |
Jan
(10) |
Feb
(27) |
Mar
(24) |
Apr
(39) |
May
(14) |
Jun
(14) |
Jul
(5) |
Aug
(15) |
Sep
(21) |
Oct
(25) |
Nov
(10) |
Dec
(6) |
2007 |
Jan
(19) |
Feb
(23) |
Mar
(10) |
Apr
(10) |
May
(10) |
Jun
(9) |
Jul
(8) |
Aug
(6) |
Sep
(10) |
Oct
(7) |
Nov
(4) |
Dec
(5) |
2008 |
Jan
(23) |
Feb
(13) |
Mar
(19) |
Apr
(11) |
May
(11) |
Jun
(10) |
Jul
(12) |
Aug
(19) |
Sep
(11) |
Oct
(4) |
Nov
(6) |
Dec
|
2009 |
Jan
(8) |
Feb
(15) |
Mar
(21) |
Apr
(12) |
May
(14) |
Jun
(9) |
Jul
(2) |
Aug
(17) |
Sep
(36) |
Oct
(31) |
Nov
(13) |
Dec
(13) |
2010 |
Jan
(24) |
Feb
(17) |
Mar
(32) |
Apr
(18) |
May
(9) |
Jun
(6) |
Jul
(11) |
Aug
(18) |
Sep
(7) |
Oct
(20) |
Nov
(5) |
Dec
(4) |
2011 |
Jan
(1) |
Feb
(5) |
Mar
(3) |
Apr
(1) |
May
(2) |
Jun
|
Jul
(1) |
Aug
(4) |
Sep
(7) |
Oct
(1) |
Nov
(3) |
Dec
(1) |
2012 |
Jan
(2) |
Feb
|
Mar
(1) |
Apr
(4) |
May
(1) |
Jun
|
Jul
|
Aug
(1) |
Sep
(1) |
Oct
(3) |
Nov
(3) |
Dec
|
2013 |
Jan
(1) |
Feb
(3) |
Mar
(1) |
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2019 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
From: SourceForge.net <no...@so...> - 2010-10-05 17:31:57
|
Feature Requests item #3081586, was opened at 2010-10-05 12:31 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438938&aid=3081586&group_id=44253 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Project Facility Group: None Status: Open Priority: 5 Private: No Submitted By: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: Store Preferences within Projects Initial Comment: One setting I often have to change from project to project is the indent size (DrJava uses 2, many other projects use 4). It would be nice to be able to associate certain values in the Preferences with a project, to store them when the project is saved, and to restore them when the project is loaded. There are different ways of doing this. The simplest would probably be to just have a list of checkboxes, one for each preference item, and the current value of every checked preference item is stored in the project file when it is saved. When the project file is loaded again, the preference setting is updated to be the value stored in the project file. The value of the preference item cannot be changed in the Project Properties dialog; setting the preferences is still done in the Preferences window. The Project Properties dialog just selects the preferences that are stored. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438938&aid=3081586&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-10-05 03:47:43
|
Bugs item #3081262, was opened at 2010-10-04 22:47 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3081262&group_id=44253 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Interactions Group: 4: Serious Status: Open Resolution: None Priority: 8 Private: No Submitted By: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: System.out.print Flood Makes DrJava Hang Initial Comment: When printing very long lines without line breaks, DrJava slows down and becomes unresponsive. It basically hangs. This isn't the case when the same amount of information is printed, but with line breaks inserted. This program is bad: public class FloodDrJava { public static void main(String[] args) { for(int i=0; i<10000; ++i) { System.out.print("Hello "+i+" "); } } } This program is not so bad: public class FloodDrJava { public static void main(String[] args) { for(int i=0; i<10000; ++i) { System.out.println("Hello "+i+" "); } } } It seems like it's appending to long lines that's killing the performance. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3081262&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-10-04 19:22:58
|
Bugs item #3081085, was opened at 2010-10-04 14:22 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3081085&group_id=44253 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Research Compilers (Mint, HJ) Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: Cannot Invoke HJ Methods from Interactions Initial Comment: We cannot call methods directly from the Interactions pane: We have to use the hj or run commands, otherwise the class loader isn't properly set up. We should at least come up with a better error message than throwing an exception: Welcome to DrJava. Working directory is /Users/mgricken/bin/hj.release/examples > new FibFuture().fib(10) java.lang.NullPointerException at hj.lang.Runtime.here(Runtime.java:317) at hj.lang.Object.<init>(Object.java:44) at FibFuture.<init>(FibFuture.hj) ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3081085&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-10-04 19:02:05
|
Bugs item #3081079, was opened at 2010-10-04 14:02 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3081079&group_id=44253 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Research Compilers (Mint, HJ) Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: HJ compiler errors not displayed in Compiler Output Initial Comment: Compiler errors generated by the HJ compiler are currently only displayed in the Console, not in the Compiler Output pane. As a result, a compilation is always deemed a success, even if there are errors. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3081079&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-10-04 16:55:14
|
Bugs item #3081009, was opened at 2010-10-04 11:55 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3081009&group_id=44253 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Research Compilers (Mint, HJ) Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: HJ generates class files in wrong directories Initial Comment: When using the HJ compiler from within DrJava, the HJ compiler generates class files for classes not in the default package in the wrong directories. Example: The foo.bar.HelloWorld class is in the directory /Users/mgricken/bin/hj.release/examples/foo/bar/ The class files should be generated in the same directory (or in the foo/bar subdirectory of the build directory). Due to a bug, the class files are generated in /Users/mgricken/bin/hj.release/examples/foo/bar/foo/bar. The package part of the directory is replicated in the directory of the source file. The class files are even generated there if a build directory is set, i.e. the compiler ignores the build directory setting. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3081009&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-10-03 20:21:18
|
Bugs item #3080534, was opened at 2010-10-03 20:21 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3080534&group_id=44253 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Other Group: 4: Serious Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Sound problems Initial Comment: Whenever I start DrJava it makes the sound on my computer sluggish and crackles and buzzes to the point where everything is just static noise. It's definitely not a computer or hardware problem because its perfectly fine when I don't use DrJava and the problem persists after closing DrJava too. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3080534&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-09-29 21:18:59
|
Bugs item #3078257, was opened at 2010-09-29 21:18 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3078257&group_id=44253 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Debugger Group: 2: Annoying Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Error popped up while compiling program Initial Comment: edu.rice.cs.util.UnexpectedException: java.util.concurrent.TimeoutException at edu.rice.cs.drjava.model.repl.newjvm.MainJVM$StartingState.restart(MainJVM.java:693) at edu.rice.cs.drjava.model.repl.newjvm.MainJVM.restartInterpreterJVM(MainJVM.java:157) at edu.rice.cs.drjava.model.repl.RMIInteractionsModel._resetInterpreter(RMIInteractionsModel.java:126) at edu.rice.cs.drjava.model.repl.InteractionsModel.resetInterpreter(InteractionsModel.java:316) at edu.rice.cs.drjava.model.DefaultGlobalModel.resetInteractions(DefaultGlobalModel.java:340) at edu.rice.cs.drjava.model.DefaultGlobalModel.resetInteractions(DefaultGlobalModel.java:321) at edu.rice.cs.drjava.model.DefaultGlobalModel$2.compileEnded(DefaultGlobalModel.java:152) at edu.rice.cs.drjava.model.compiler.CompilerEventNotifier.compileEnded(CompilerEventNotifier.java:91) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel$2.run(DefaultCompilerModel.java:261) at edu.rice.cs.util.swing.Utilities.invokeLater(Utilities.java:62) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel._doCompile(DefaultCompilerModel.java:260) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel.compileAll(DefaultCompilerModel.java:150) at edu.rice.cs.drjava.ui.MainFrame._compileAll(MainFrame.java:5396) at edu.rice.cs.drjava.ui.MainFrame.access$4800(MainFrame.java:117) at edu.rice.cs.drjava.ui.MainFrame$51.actionPerformed(MainFrame.java:829) at javax.swing.AbstractButton.fireActionPerformed(Unknown Source) at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source) at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source) at javax.swing.DefaultButtonModel.setPressed(Unknown Source) at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source) at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source) at java.awt.Component.processMouseEvent(Unknown Source) at javax.swing.JComponent.processMouseEvent(Unknown Source) at java.awt.Component.processEvent(Unknown Source) at java.awt.Container.processEvent(Unknown Source) at java.awt.Component.dispatchEventImpl(Unknown Source) at java.awt.Container.dispatchEventImpl(Unknown Source) at java.awt.Component.dispatchEvent(Unknown Source) at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source) at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source) at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source) at java.awt.Container.dispatchEventImpl(Unknown Source) at java.awt.Window.dispatchEventImpl(Unknown Source) at java.awt.Component.dispatchEvent(Unknown Source) at java.awt.EventQueue.dispatchEvent(Unknown Source) at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.run(Unknown Source) Caused by: java.util.concurrent.TimeoutException at edu.rice.cs.plt.concurrent.ConcurrentUtil.waitUntilNanos(ConcurrentUtil.java:155) at edu.rice.cs.plt.concurrent.StateMonitor.ensureNotState(StateMonitor.java:199) at edu.rice.cs.plt.concurrent.StateMonitor.ensureNotState(StateMonitor.java:185) at edu.rice.cs.drjava.model.repl.newjvm.MainJVM$StartingState.restart(MainJVM.java:692) ... 40 more Caused by: java.util.concurrent.TimeoutException at edu.rice.cs.plt.concurrent.ConcurrentUtil.waitUntilNanos(ConcurrentUtil.java:155) at edu.rice.cs.plt.concurrent.StateMonitor.ensureNotState(StateMonitor.java:199) at edu.rice.cs.plt.concurrent.StateMonitor.ensureNotState(StateMonitor.java:185) at edu.rice.cs.drjava.model.repl.newjvm.MainJVM$StartingState.restart(MainJVM.java:692) at edu.rice.cs.drjava.model.repl.newjvm.MainJVM.restartInterpreterJVM(MainJVM.java:157) at edu.rice.cs.drjava.model.repl.RMIInteractionsModel._resetInterpreter(RMIInteractionsModel.java:126) at edu.rice.cs.drjava.model.repl.InteractionsModel.resetInterpreter(InteractionsModel.java:316) at edu.rice.cs.drjava.model.DefaultGlobalModel.resetInteractions(DefaultGlobalModel.java:340) at edu.rice.cs.drjava.model.DefaultGlobalModel.resetInteractions(DefaultGlobalModel.java:321) at edu.rice.cs.drjava.model.DefaultGlobalModel$2.compileEnded(DefaultGlobalModel.java:152) at edu.rice.cs.drjava.model.compiler.CompilerEventNotifier.compileEnded(CompilerEventNotifier.java:91) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel$2.run(DefaultCompilerModel.java:261) at edu.rice.cs.util.swing.Utilities.invokeLater(Utilities.java:62) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel._doCompile(DefaultCompilerModel.java:260) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel.compileAll(DefaultCompilerModel.java:150) at edu.rice.cs.drjava.ui.MainFrame._compileAll(MainFrame.java:5396) at edu.rice.cs.drjava.ui.MainFrame.access$4800(MainFrame.java:117) at edu.rice.cs.drjava.ui.MainFrame$51.actionPerformed(MainFrame.java:829) at javax.swing.AbstractButton.fireActionPerformed(Unknown Source) at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source) at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source) at javax.swing.DefaultButtonModel.setPressed(Unknown Source) at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source) at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source) at java.awt.Component.processMouseEvent(Unknown Source) at javax.swing.JComponent.processMouseEvent(Unknown Source) at java.awt.Component.processEvent(Unknown Source) at java.awt.Container.processEvent(Unknown Source) at java.awt.Component.dispatchEventImpl(Unknown Source) at java.awt.Container.dispatchEventImpl(Unknown Source) at java.awt.Component.dispatchEvent(Unknown Source) at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source) at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source) at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source) at java.awt.Container.dispatchEventImpl(Unknown Source) at java.awt.Window.dispatchEventImpl(Unknown Source) at java.awt.Component.dispatchEvent(Unknown Source) at java.awt.EventQueue.dispatchEvent(Unknown Source) at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.run(Unknown Source) System Properties: DrJava Version drjava-20090821-r5004 DrJava Build Time 20090821-1520 drjava.debug.port = 55054 java.runtime.name = Java(TM) SE Runtime Environment sun.boot.library.path = C:\Program Files\Java\jre6\bin java.vm.version = 16.3-b01 java.vm.vendor = Sun Microsystems Inc. java.vendor.url = http://java.sun.com/ path.separator = ; java.vm.name = Java HotSpot(TM) Client VM file.encoding.pkg = sun.io sun.java.launcher = SUN_STANDARD user.country = US sun.os.patch.level = java.vm.specification.name = Java Virtual Machine Specification user.dir = <anonymized user.dir> java.runtime.version = 1.6.0_20-b02 java.awt.graphicsenv = sun.awt.Win32GraphicsEnvironment java.endorsed.dirs = C:\Program Files\Java\jre6\lib\endorsed os.arch = x86 java.io.tmpdir = C:\Users\<anonymized user.name>\AppData\Local\Temp\ line.separator = "\u000d\u000a" java.vm.specification.vendor = Sun Microsystems Inc. user.variant = os.name = Windows 7 sun.jnu.encoding = Cp1252 java.library.path = C:\Program Files\Java\jre6\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\PC\bin;C:\PC\scripts;C:\Windows\System32\GroupPolicy\Machine\Scripts\Startup;C:\Program Files\Common Files\SIL;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;c:\Program Files\Microsoft SQL Server\100\Tools\Binn\;c:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Python26\;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\PharosSystems\Core;C:\Program Files\Mozilla Firefox;C:\Program Files\Java\jre6\bin java.specification.name = Java Platform API Specification java.class.version = 50.0 sun.management.compiler = HotSpot Client Compiler os.version = 6.1 user.home = <anonymized user.home> user.timezone = America/New_York java.awt.printerjob = sun.awt.windows.WPrinterJob file.encoding = Cp1252 java.specification.version = 1.6 java.class.path = <anonymized user.dir>\drjava.exe user.name = <anonymized user.name> java.vm.specification.version = 1.0 java.home = C:\Program Files\Java\jre6 sun.arch.data.model = 32 user.language = en java.specification.vendor = Sun Microsystems Inc. awt.toolkit = sun.awt.windows.WToolkit java.vm.info = mixed mode, sharing java.version = 1.6.0_20 java.ext.dirs = C:\Program Files\Java\jre6\lib\ext;C:\Windows\Sun\Java\lib\ext sun.boot.class.path = C:\Program Files\Java\jre6\lib\resources.jar;C:\Program Files\Java\jre6\lib\rt.jar;C:\Program Files\Java\jre6\lib\sunrsasign.jar;C:\Program Files\Java\jre6\lib\jsse.jar;C:\Program Files\Java\jre6\lib\jce.jar;C:\Program Files\Java\jre6\lib\charsets.jar;C:\Program Files\Java\jre6\classes java.vendor = Sun Microsystems Inc. file.separator = \ java.vendor.url.bug = http://java.sun.com/cgi-bin/bugreport.cgi sun.io.unicode.encoding = UnicodeLittle sun.cpu.endian = little java.rmi.server.hostname = 127.0.0.1 sun.desktop = windows sun.cpu.isalist = pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86 #DrJava configuration file #Wed Sep 29 17:18:09 EDT 2010 key.delete.next = [shift DELETE] key.delete.previous = [shift BACK_SPACE] save.before.compile = true last.dir = D:\\Documents\\StudentScores.java last.interactions.dir = D:\\Documents Used memory: about 22.01 megabytes Free memory: about 17.09 megabytes Total memory: about 39.11 megabytes Total memory can expand to: about 247.50 megabytes Number of processors/cores: 2 ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3078257&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-09-26 19:45:20
|
Bugs item #3076087, was opened at 2010-09-26 19:45 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3076087&group_id=44253 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: DrJava refuses to open on my computer Initial Comment: 1 error occured! Please submit a bug report containing the information below and an account of the actions that caused the bug (if known) to http://sourceforge.net/projects/drjava. You may wish to save all your work and restart DrJava. Thanks for your help in making DrJava better! ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3076087&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-09-23 18:47:27
|
Bugs item #3074287, was opened at 2010-09-23 11:47 Message generated for change (Tracker Item Submitted) made by stephendgilbert You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3074287&group_id=44253 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Compiler integration Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Stephen Gilbert (stephendgilbert) Assigned to: Nobody/Anonymous (nobody) Summary: Warnings still show with Eclipse Compiler Initial Comment: When using the Eclipse compiler and creating a Java applet, the SerialID warning still appears, even though the appropriate checkbox has been un-checked in the preferences dialog. There are also a few other Eclipse warnings that appear (variable x is never read) that are a little confusing to students. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3074287&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-09-19 19:46:58
|
Bugs item #3071425, was opened at 2010-09-19 14:46 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3071425&group_id=44253 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: User interface Group: 2: Annoying Status: Open Resolution: None Priority: 5 Private: No Submitted By: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: Does not append .java when saving Initial Comment: When saving an unnamed file, DrJava does not append the extension ".java" anymore. This makes me save a file as "MyClass" instead of "MyClass.java" now, causing DrJava to ignore and not compile the file. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3071425&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-09-17 15:24:32
|
Bugs item #3069101, was opened at 2010-09-17 10:24 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3069101&group_id=44253 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Interactions Group: 3: Ugly Status: Open Resolution: None Priority: 5 Private: No Submitted By: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: HelloWorld Applet Throws Exception Initial Comment: Filed in response to a DrJava review: "There is a severe defect. The HelloWorld Java applet (http://download.oracle.com/javase/tutorial/deployment/applet/getStarted.html) crashes in the Applet Viewer invoked by DrJava. Still it runs smootly both in IE8 and FireFox. It also runs OK in the Applet Viewer started separately, without DrJava." The HelloWorld applet from http://download.oracle.com/javase/tutorial/deployment/applet/getStarted.html throws an exception. The problem is that we already execute the init() method in the event thread. Welcome to DrJava. Working directory is D:\Documents\Dev\Java > run HelloWorld Exception in thread "AWT-EventQueue-0" java.lang.Error: Cannot call invokeAndWait from the event dispatcher thread at java.awt.EventQueue.invokeAndWait(Unknown Source) at javax.swing.SwingUtilities.invokeAndWait(Unknown Source) at HelloWorld.init(HelloWorld.java:10) at edu.rice.cs.plt.swing.AppletComponent.updateState(AppletComponent.java:100) at edu.rice.cs.plt.swing.AppletComponent.paintComponent(AppletComponent.java:94) at javax.swing.JComponent.paint(Unknown Source) at javax.swing.JComponent.paintChildren(Unknown Source) at javax.swing.JComponent.paint(Unknown Source) at javax.swing.JComponent.paintChildren(Unknown Source) at javax.swing.JComponent.paint(Unknown Source) at javax.swing.JLayeredPane.paint(Unknown Source) at javax.swing.JComponent.paintChildren(Unknown Source) at javax.swing.JComponent.paintToOffscreen(Unknown Source) at javax.swing.BufferStrategyPaintManager.paint(Unknown Source) at javax.swing.RepaintManager.paint(Unknown Source) at javax.swing.JComponent.paint(Unknown Source) at java.awt.GraphicsCallback$PaintCallback.run(Unknown Source) at sun.awt.SunGraphicsCallback.runOneComponent(Unknown Source) at sun.awt.SunGraphicsCallback.runComponents(Unknown Source) at java.awt.Container.paint(Unknown Source) at java.awt.Window.paint(Unknown Source) at javax.swing.RepaintManager.paintDirtyRegions(Unknown Source) at javax.swing.RepaintManager.paintDirtyRegions(Unknown Source) at javax.swing.RepaintManager.seqPaintDirtyRegions(Unknown Source) at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(Unknown Source) at java.awt.event.InvocationEvent.dispatch(Unknown Source) at java.awt.EventQueue.dispatchEvent(Unknown Source) at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.run(Unknown Source) Exception in thread "AWT-EventQueue-0" java.lang.Error: Cannot call invokeAndWait from the event dispatcher thread at java.awt.EventQueue.invokeAndWait(Unknown Source) at javax.swing.SwingUtilities.invokeAndWait(Unknown Source) at HelloWorld.init(HelloWorld.java:10) at edu.rice.cs.plt.swing.AppletComponent.updateState(AppletComponent.java:100) at edu.rice.cs.plt.swing.AppletComponent.paintComponent(AppletComponent.java:94) at javax.swing.JComponent.paint(Unknown Source) at javax.swing.JComponent.paintChildren(Unknown Source) at javax.swing.JComponent.paint(Unknown Source) at javax.swing.JComponent.paintChildren(Unknown Source) at javax.swing.JComponent.paint(Unknown Source) at javax.swing.JLayeredPane.paint(Unknown Source) at javax.swing.JComponent.paintChildren(Unknown Source) at javax.swing.JComponent.paintToOffscreen(Unknown Source) at javax.swing.BufferStrategyPaintManager.paint(Unknown Source) at javax.swing.RepaintManager.paint(Unknown Source) at javax.swing.JComponent.paint(Unknown Source) at java.awt.GraphicsCallback$PaintCallback.run(Unknown Source) at sun.awt.SunGraphicsCallback.runOneComponent(Unknown Source) at sun.awt.SunGraphicsCallback.runComponents(Unknown Source) at java.awt.Container.paint(Unknown Source) at java.awt.Window.paint(Unknown Source) at javax.swing.RepaintManager.paintDirtyRegions(Unknown Source) at javax.swing.RepaintManager.paintDirtyRegions(Unknown Source) at javax.swing.RepaintManager.seqPaintDirtyRegions(Unknown Source) at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(Unknown Source) at java.awt.event.InvocationEvent.dispatch(Unknown Source) at java.awt.EventQueue.dispatchEvent(Unknown Source) at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source) at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.pumpEvents(Unknown Source) at java.awt.EventDispatchThread.run(Unknown Source) > Here is the source code: import javax.swing.JApplet; import javax.swing.SwingUtilities; import javax.swing.JLabel; public class HelloWorld extends JApplet { //Called when this applet is loaded into the browser. public void init() { //Execute a job on the event-dispatching thread; creating this applet's GUI. try { SwingUtilities.invokeAndWait(new Runnable() { public void run() { JLabel lbl = new JLabel("Hello World"); add(lbl); } }); } catch (Exception e) { System.err.println("createGUI didn't complete successfully"); } } } ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3069101&group_id=44253 |
From: Mathias R. <mgr...@ri...> - 2010-09-13 22:00:27
|
Dear DrJava Users: We have made an updated stable version available: drjava-stable-20100913-r5387 You can download it from the DrJava website at http://drjava.org/ or from SourceForge.net by following this link: http://sourceforge.net/projects/drjava/files/1.%20DrJava%20Stable%20Releases/drjava-stable-20100913-r5387/ You receive this email because you have subscribed to a DrJava mailing list. Available for download at http://drjava.org . DrJava is a lightweight programming environment for Java designed to foster test-driven software development. It includes an intelligent program editor, an interactions pane for evaluating program text, a source level debugger, and a unit testing tool. This stable release represents an update to the previous stable release, providing a bug fix for three issues that proved to be inconvenient for users. Note: Java 1.4 compatibility has been dropped. To use DrJava, you will need Java 5 or newer. Bug fixes since last stable release: - The "Smart Run" feature properly runs a main method in a class first, and it does not attempt to call a zero-parameter constructor of a class if it does not exist. - The Apple Java 6 Developer Preview 6 (javase6release1dp6.dmg) is excluded as Java 6 JDK, as it does not contain a Java 6-compatible compiler. This caused NullPointerExceptions in rare cases. - On Linux systems with Java 5 or older, Metal is the default look-and-feel again. The system look-and-feel turned out to be awful. Note: These patches were applied to the previous stable release in a branch. Even though this release has revision 5387, other features, like Habanero Java integration, are not yet included. They will be contained in an upcoming development release. [SourceForge.net Release] drjava : 1. DrJava Stable Releases Project: DrJava (drjava) Package: 1. DrJava Stable Releases Date : 2010-09-13 |
From: SourceForge.net <no...@so...> - 2010-09-04 19:51:29
|
Bugs item #3059469, was opened at 2010-09-04 19:51 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3059469&group_id=44253 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Other Group: 4: Serious Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Cannot use alt-gr and similar buttons Initial Comment: I use a Norwegian keyboard on a netbook, and have the following problem: The modifying keys such as the "^~ button and the alt-gr button doesn't register. (Is this the famous 3rd level?) This is completely horrible for me, since the brackets [] and the curlybraces {} are on the alt-gr groupings. My OS is Ubuntu 10.04 Karmic Koala, using OpenJDK 6.0 and this is the copypaste of sysprops: DrJava Version drjava-20100816-r5366 DrJava Build Time 20100816-1819 drjava.debug.port = 40883 java.runtime.name = OpenJDK Runtime Environment sun.boot.library.path = /usr/lib/jvm/java-6-openjdk/jre/lib/i386 java.vm.version = 16.0-b13 java.vm.vendor = Sun Microsystems Inc. java.vendor.url = http://java.sun.com/ path.separator = : java.vm.name = OpenJDK Client VM file.encoding.pkg = sun.io sun.java.launcher = SUN_STANDARD user.country = NO sun.os.patch.level = unknown java.vm.specification.name = Java Virtual Machine Specification user.dir = <anonymized user.home>/Nedlastinger java.runtime.version = 1.6.0_18-b18 java.awt.graphicsenv = sun.awt.X11GraphicsEnvironment java.endorsed.dirs = /usr/lib/jvm/java-6-openjdk/jre/lib/endorsed os.arch = i386 javax.accessibility.assistive_technologies = org.GNOME.Accessibility.JavaBridge java.io.tmpdir = /tmp line.separator = "\u000a" java.vm.specification.vendor = Sun Microsystems Inc. os.name = Linux sun.jnu.encoding = UTF-8 java.library.path = /usr/lib/jvm/java-6-openjdk/jre/lib/i386/client:/usr/lib/jvm/java-6-openjdk/jre/lib/i386:/usr/lib/jvm/java-6-openjdk/jre/../lib/i386:/usr/java/packages/lib/i386:/usr/lib/jni:/lib:/usr/lib java.specification.name = Java Platform API Specification java.class.version = 50.0 sun.management.compiler = HotSpot Client Compiler os.version = 2.6.32-24-generic user.home = <anonymized user.home> user.timezone = Europe/Oslo java.awt.printerjob = sun.print.PSPrinterJob file.encoding = UTF-8 java.specification.version = 1.6 java.class.path = drjava-stable-20100816-r5366.jar user.name = <anonymized user.name> java.vm.specification.version = 1.0 java.home = /usr/lib/jvm/java-6-openjdk/jre sun.arch.data.model = 32 user.language = nb java.specification.vendor = Sun Microsystems Inc. java.vm.info = mixed mode, sharing java.version = 1.6.0_18 java.ext.dirs = /usr/lib/jvm/java-6-openjdk/jre/lib/ext:/usr/java/packages/lib/ext sun.boot.class.path = /usr/lib/jvm/java-6-openjdk/jre/lib/resources.jar:/usr/lib/jvm/java-6-openjdk/jre/lib/rt.jar:/usr/lib/jvm/java-6-openjdk/jre/lib/sunrsasign.jar:/usr/lib/jvm/java-6-openjdk/jre/lib/jsse.jar:/usr/lib/jvm/java-6-openjdk/jre/lib/jce.jar:/usr/lib/jvm/java-6-openjdk/jre/lib/charsets.jar:/usr/lib/jvm/java-6-openjdk/jre/lib/rhino.jar:/usr/lib/jvm/java-6-openjdk/jre/classes java.vendor = Sun Microsystems Inc. file.separator = / java.vendor.url.bug = http://java.sun.com/cgi-bin/bugreport.cgi sun.io.unicode.encoding = UnicodeLittle sun.cpu.endian = little java.rmi.server.hostname = 127.0.0.1 sun.desktop = gnome sun.cpu.isalist = DrJava configuration file In resource bundle edu.rice.cs.drjava.config.options: nothing In shadowed configuration: key.delete.next = [shift DELETE] key.delete.previous = [shift BACK_SPACE] last.dir = <anonymized user.home> last.interactions.dir = <anonymized user.home> new.version.notification.last = 1283628922280 Used memory: about 22.83 megabytes Free memory: about 7.70 megabytes Total memory: about 30.54 megabytes Total memory can expand to: about 479.50 megabytes Number of processors/cores: 2 Compiler Discovery Log: >From config: not set makeFromRuntime: compilerAdapter=edu.rice.cs.drjava.model.compiler.Javac160OpenJDKCompiler attempt = JDK 6.0_18-OpenJDK, isAvailable() = false compiler=edu.rice.cs.drjava.model.compiler.NoCompilerAvailable at least Java 6, try EclipseCompiler version for Eclipse: Java 6.0 attempt = Eclipse Compiler 0.A48, isAvailable() = true compiler=edu.rice.cs.drjava.model.compiler.EclipseCompiler compiler found compilers found: 1 >From runtime: JDK library 6.0 Dir added: /usr/lib/jvm/java-6-openjdk/jre Dir added: /usr/lib/jvm/java-6-openjdk Dir added: /usr/lib/jvm Dir not added: /C:/Program Files/Java Dir not added: /C:/Program Files Dir not added: /C:/Java Dir not added: /C: Dir not added: /System/Library/Frameworks/JavaVM.framework/Versions Dir not added: /usr/java Dir not added: /usr/j2se Dir added: /usr Dir not added: /usr/local/java Dir not added: /usr/local/j2se Dir added: /usr/local Dir added: /usr/lib/jvm Dir not added: /usr/lib/jvm/java-6-sun Dir not added: /usr/lib/jvm/java-1.5.0-sun Dir added: /usr/lib/jvm/java-6-openjdk Dir not added: /home/javaplt/java/Linux-i686 File added: /usr/lib/jvm/java-6-openjdk/lib/tools.jar File not added: /usr/lib/jvm/java-6-openjdk/Classes/classes.jar File added: /usr/lib/jvm/java-6-openjdk/lib/tools.jar File not added: /usr/lib/jvm/java-6-openjdk/Classes/classes.jar File not added: /C:/Program Files/JavaMint/langtools/dist/lib/classes.jar File not added: /C:/Program Files/JavaMint/langtools/dist/lib/tools.jar File not added: /usr/local/soylatte/lib/classes.jar File not added: /usr/local/soylatte/lib/tools.jar File not added: /usr/local/JavaMint/langtools/dist/lib/classes.jar File not added: /usr/local/JavaMint/langtools/dist/lib/tools.jar MINT_HOME not set File added: <anonymized user.home>/Nedlastinger/drjava-stable-20100816-r5366.jar Result: Found library: JDK library 6.0_18-OpenJDK at /usr/lib/jvm/java-6-openjdk/lib/tools.jar, boot classpath: [/usr/lib/jvm/java-6-openjdk/jre/lib/resources.jar, /usr/lib/jvm/java-6-openjdk/jre/lib/rhino.jar, /usr/lib/jvm/java-6-openjdk/jre/lib/jce.jar, /usr/lib/jvm/java-6-openjdk/jre/lib/compilefontconfig.jar, /usr/lib/jvm/java-6-openjdk/jre/lib/about.jar, /usr/lib/jvm/java-6-openjdk/jre/lib/javazic.jar, /usr/lib/jvm/java-6-openjdk/jre/lib/management-agent.jar, /usr/lib/jvm/java-6-openjdk/jre/lib/jsse.jar, /usr/lib/jvm/java-6-openjdk/jre/lib/rt.jar, /usr/lib/jvm/java-6-openjdk/jre/lib/charsets.jar] >From search: JDK library 6.0_18-OpenJDK at /usr/lib/jvm/java-6-openjdk/lib/tools.jar, boot classpath: [/usr/lib/jvm/java-6-openjdk/jre/lib/resources.jar, /usr/lib/jvm/java-6-openjdk/jre/lib/rhino.jar, /usr/lib/jvm/java-6-openjdk/jre/lib/jce.jar, /usr/lib/jvm/java-6-openjdk/jre/lib/compilefontconfig.jar, /usr/lib/jvm/java-6-openjdk/jre/lib/about.jar, /usr/lib/jvm/java-6-openjdk/jre/lib/javazic.jar, /usr/lib/jvm/java-6-openjdk/jre/lib/management-agent.jar, /usr/lib/jvm/java-6-openjdk/jre/lib/jsse.jar, /usr/lib/jvm/java-6-openjdk/jre/lib/rt.jar, /usr/lib/jvm/java-6-openjdk/jre/lib/charsets.jar] So, is there any way to fix this? Normally, I'd just use another program, but using drJava is mandatory at UiB for their entry level programming course, and I'm trying to help a friend of mine who's taking that course, and google avails me nought. :( ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3059469&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-08-31 15:57:05
|
Bugs item #3056809, was opened at 2010-08-31 10:57 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3056809&group_id=44253 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Definitions (source editor) Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: Close All Slow, Find All Not Updated Properly Initial Comment: Posted on Corky's behalf: When I close a collection of files ("Close All") with the results of global searches active in the interactions pane, the closing process is very slow and the global search panes are not closed. In fact, I think the logic for updating the status of "find all" search panes when documents are closed or modified s messed up. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3056809&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-08-30 20:25:20
|
Bugs item #3056277, was opened at 2010-08-30 15:25 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3056277&group_id=44253 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Compiler integration Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: Compiling with Soy Latte when Running with Java 6 on Mac Initial Comment: I'm running DrJava with Java 6 on the Mac (actually the Developer Preview 6 javase6release1dp6.dmg), and DrJava chooses SoyLatte over Apple's Java 6 by default because SoyLatte's version number is higher: JDK 6.0_3-p3 from /packages/soylatte16-i386-1.0.3/lib/tools.jar. JDK 6.0 from /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/classes.jar When I'm compiling with SoyLatte, I'm getting the exception below. edu.rice.cs.util.UnexpectedException: java.lang.NoClassDefFoundError: com/sun/tools/javac/util/Name at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel._doCompile(DefaultCompilerModel.java:276) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel.compileAll(DefaultCompilerModel.java:170) at edu.rice.cs.drjava.ui.MainFrame._compileAll(MainFrame.java:5535) at edu.rice.cs.drjava.ui.MainFrame.access$5200(MainFrame.java:121) at edu.rice.cs.drjava.ui.MainFrame$55.actionPerformed(MainFrame.java:941) at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2028) at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2351) at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387) at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242) at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236) at java.awt.Component.processMouseEvent(Component.java:6084) at javax.swing.JComponent.processMouseEvent(JComponent.java:3240) at java.awt.Component.processEvent(Component.java:5849) at java.awt.Container.processEvent(Container.java:2028) at java.awt.Component.dispatchEventImpl(Component.java:4491) at java.awt.Container.dispatchEventImpl(Container.java:2086) at java.awt.Component.dispatchEvent(Component.java:4321) at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4292) at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3956) at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3886) at java.awt.Container.dispatchEventImpl(Container.java:2072) at java.awt.Window.dispatchEventImpl(Window.java:2405) at java.awt.Component.dispatchEvent(Component.java:4321) at java.awt.EventQueue.dispatchEvent(EventQueue.java:600) at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:300) at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:210) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:200) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:195) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:187) at java.awt.EventDispatchThread.run(EventDispatchThread.java:121) Caused by: java.lang.NoClassDefFoundError: com/sun/tools/javac/util/Name at com.sun.tools.javac.util.Name$Table.<init>(Name.java:396) at com.sun.tools.javac.util.Name$Table.<init>(Name.java:503) at com.sun.tools.javac.util.Name$Table.make(Name.java:350) at com.sun.tools.javac.util.Name$Table.instance(Name.java:367) at com.sun.tools.javac.main.JavaCompiler.<init>(JavaCompiler.java:291) at com.sun.tools.javac.main.JavaCompiler.instance(JavaCompiler.java:72) at edu.rice.cs.drjava.model.compiler.Javac160Compiler.compile(Javac160Compiler.java:199) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel._compileFiles(DefaultCompilerModel.java:350) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel._doCompile(DefaultCompilerModel.java:271) ... 29 more Caused by: java.lang.NoClassDefFoundError: com/sun/tools/javac/util/Name at com.sun.tools.javac.util.Name$Table.<init>(Name.java:396) at com.sun.tools.javac.util.Name$Table.<init>(Name.java:503) at com.sun.tools.javac.util.Name$Table.make(Name.java:350) at com.sun.tools.javac.util.Name$Table.instance(Name.java:367) at com.sun.tools.javac.main.JavaCompiler.<init>(JavaCompiler.java:291) at com.sun.tools.javac.main.JavaCompiler.instance(JavaCompiler.java:72) at edu.rice.cs.drjava.model.compiler.Javac160Compiler.compile(Javac160Compiler.java:199) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel._compileFiles(DefaultCompilerModel.java:350) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel._doCompile(DefaultCompilerModel.java:271) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel.compileAll(DefaultCompilerModel.java:170) at edu.rice.cs.drjava.ui.MainFrame._compileAll(MainFrame.java:5535) at edu.rice.cs.drjava.ui.MainFrame.access$5200(MainFrame.java:121) at edu.rice.cs.drjava.ui.MainFrame$55.actionPerformed(MainFrame.java:941) at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2028) at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2351) at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387) at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242) at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236) at java.awt.Component.processMouseEvent(Component.java:6084) at javax.swing.JComponent.processMouseEvent(JComponent.java:3240) at java.awt.Component.processEvent(Component.java:5849) at java.awt.Container.processEvent(Container.java:2028) at java.awt.Component.dispatchEventImpl(Component.java:4491) at java.awt.Container.dispatchEventImpl(Container.java:2086) at java.awt.Component.dispatchEvent(Component.java:4321) at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4292) at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3956) at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3886) at java.awt.Container.dispatchEventImpl(Container.java:2072) at java.awt.Window.dispatchEventImpl(Window.java:2405) at java.awt.Component.dispatchEvent(Component.java:4321) at java.awt.EventQueue.dispatchEvent(EventQueue.java:600) at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:300) at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:210) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:200) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:195) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:187) at java.awt.EventDispatchThread.run(EventDispatchThread.java:121) System Properties: DrJava Version drjava-20100816-r5366 DrJava Build Time 20100816-1819 sun.java2d.opengl = false drjava.debug.port = 54466 java.runtime.name = Java(TM) SE Runtime Environment sun.boot.library.path = /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries java.vm.version = 1.6.0-b88-17-release awt.nativeDoubleBuffering = true gopherProxySet = false java.vm.vendor = Apple Computer, Inc. java.vendor.url = http://www.apple.com/ path.separator = : java.vm.name = Java HotSpot(TM) Client VM file.encoding.pkg = sun.io sun.java.launcher = SUN_STANDARD user.country = US sun.os.patch.level = unknown java.vm.specification.name = Java Virtual Machine Specification user.dir = <anonymized user.dir> java.runtime.version = 1.6.0-dp-b88-34 java.awt.graphicsenv = apple.awt.CGraphicsEnvironment java.endorsed.dirs = /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/endorsed os.arch = i386 java.io.tmpdir = /tmp line.separator = "\u000a" java.vm.specification.vendor = Sun Microsystems Inc. os.name = Mac OS X apple.laf.useScreenMenuBar = true sun.jnu.encoding = MacRoman java.library.path = <anonymized user.dir>/DrJava.app/Contents/Resources/Java:/System/Library/PrivateFrameworks/JavaApplicationLauncher.framework/Resources:.:/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java java.specification.name = Java Platform API Specification java.class.version = 50.0 sun.management.compiler = HotSpot Client Compiler os.version = 10.4.11 user.home = <anonymized user.home> user.timezone = America/Chicago java.awt.printerjob = apple.awt.CPrinterJob file.encoding = MacRoman java.specification.version = 1.6 java.class.path = <anonymized user.dir>/DrJava.app/Contents/Resources/Java/drjava.jar user.name = <anonymized user.name> apple.awt.graphics.UseQuartz = false java.vm.specification.version = 1.0 java.home = /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home sun.arch.data.model = 32 user.language = en java.specification.vendor = Sun Microsystems Inc. awt.toolkit = apple.awt.CToolkit java.vm.info = mixed mode java.version = 1.6.0-dp java.ext.dirs = /Library/Java/Extensions:/System/Library/Java/Extensions:/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/ext sun.boot.class.path = /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/classes.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/ui.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/laf.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/sunrsasign.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jsse.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jce.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/charsets.jar java.vendor = Apple Computer, Inc. file.separator = / java.vendor.url.bug = http://bugreport.apple.com/ sun.io.unicode.encoding = UnicodeLittle sun.cpu.endian = little java.rmi.server.hostname = 127.0.0.1 mrj.version = 1040.1.6.0-34 sun.awt.exception.handler = apple.awt.CToolkit$EventQueueExceptionHandler sun.cpu.isalist = DrJava configuration file In resource bundle edu.rice.cs.drjava.config.options: nothing In shadowed configuration: all.compiler.versions = true definitions.line.number.background.color = #e6e6e6 font.main = Bitstream Vera Sans Mono-12 font.line.numbers = Monaco-10 lineenum.enabled = true key.delete.next = [shift DELETE] key.delete.previous = [shift BACK_SPACE] find.replace.match.case = false javadoc.1.4.link = file://<anonymized user.home>/Sites/docs/Java/j2sdk-1_4_2-doc/api/ javadoc.1.5.link = file://<anonymized user.home>/Sites/docs/Java/jdk-1_5_0-doc/api javadoc.1.6.link = file://<anonymized user.home>/Sites/docs/Java/jdk-6-doc/api junit.link = file://<anonymized user.home>/Sites/javadoc/concJUnit-4.7 javadoc.additional.links = [file://<anonymized user.home>/Sites/javadoc/drjava,file://<anonymized user.home>/Sites/javadoc/dynamicjava,file://<anonymized user.home>/Sites/javadoc/plt,file://<anonymized user.home>/Sites/javadoc/soot] interactions.exit.prompt = false open.folder.recursive = true smart.run.for.applets.and.programs = false recent.files = [<anonymized user.home>/Documents/Research/Mint/java-mint/trunk/langtools/mintTest/MatrixMultiply.java,<anonymized user.home>/Documents/Research/Mint/java-mint/trunk/langtools/mintTest/unroll_part2.java,<anonymized user.home>/Documents/Research/Mint/java-mint/trunk/langtools/mintTest/unroll2.java,<anonymized user.home>/Documents/Research/Mint/java-mint/trunk/langtools/mintTest/LintFib.java,<anonymized user.home>/Documents/Research/Mint/java-mint/trunk/langtools/mintTest/LintFact.java] recent.projects = [<anonymized user.home>/Documents/Research/Mint/java-mint/java-mint.drjava,<anonymized user.home>/Documents/Research/Mint/mint-gpce2010-tutorial/listings/gpce-lint.drjava,<anonymized user.home>/Documents/Java/HelloWorld.drjava] window.height = 776 window.width = 1276 window.x = 0 window.y = 22 doc.list.width = 179 last.dir = <anonymized user.home>/Documents/Java/Bears.java last.interactions.dir = <anonymized user.home>/Documents/Java master.jvm.args = -ea master.jvm.xmx = 1536 dialog.clipboard.history.state = 425 400 425 210 dialog.completeword.javaapi = true tabbedpanes.state = 270 368 1007 401 tabbedpanes.detach = true debugger.detach = true dialog.jaroptions.state = 417 273 find.replace.focus.in.defpane = true dialog.drjava.survey.enabled = false external.saved.count = 1 external.saved.names = [NextGen Compile All] external.saved.cmdlines = [${if;cond="${and;op1="${project.mode}";op2="${not;op="${eq;op1="${project.build.dir}";op2=""}"}"}";then="${ignore;cmd="${file.mkdir;file="${project.build.dir}"}"}${java.file} -jar ${enclosing.djapp.file} @${tmpfile;content="-sourcepath ${project.root} -cp ${project.build.dir}${path.separator}${project.extra.class.path}${path.separator}${config.extra.classpath}${path.separator}${drjava.file} -d ${project.build.dir} ${drjava.all.files;sep=" ";rel="${project.root}"}"}";else="${echo;text="DrJava must be in project mode and have well-defined project root and build directory."}"}] external.saved.workdirs = [${project.root}] external.saved.enclosingdjappfiles = [<anonymized user.home>/Desktop/nextgen2-20080823-r4647.djapp] new.version.notification = weekly experimental builds new.version.notification.last = 1282769101560 drjava.survey.notification.last = 1251494812537 drjava.survey.result.last = http://www.drjava.org/submit-usage.php?rev=5004&os.name=Mac%20OS%20X&os.version=10.4.11&java.version=1.5.0_19&java.vendor=Apple%20Computer,%20Inc. rt.concjunit.location = /Users/Shared/drjava/rt.concjunit.jar Used memory: about 34.75 megabytes Free memory: about 9.47 megabytes Total memory: about 44.28 megabytes Total memory can expand to: about 1.49 gigabytes Number of processors/cores: 2 Compiler Discovery Log: >From config: not set makeFromRuntime: compilerAdapter=edu.rice.cs.drjava.model.compiler.Javac160Compiler attempt = JDK 6.0-dp, isAvailable() = true compiler=edu.rice.cs.drjava.model.compiler.Javac160Compiler compiler found at least Java 6, try EclipseCompiler version for Eclipse: Java 6.0 compiler=edu.rice.cs.drjava.model.compiler.NoCompilerAvailable compilers found: 1 >From runtime: JDK library 6.0-dp Dir added: /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home Dir added: /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0 Dir added: /System/Library/Frameworks/JavaVM.framework/Versions Dir not added: /C:/Program Files/Java Dir not added: /C:/Program Files Dir not added: /C:/Java Dir not added: /C: Dir added: /System/Library/Frameworks/JavaVM.framework/Versions Dir not added: /usr/java Dir not added: /usr/j2se Dir added: /usr Dir not added: /usr/local/java Dir not added: /usr/local/j2se Dir added: /usr/local Dir not added: /usr/lib/jvm Dir not added: /usr/lib/jvm/java-6-sun Dir not added: /usr/lib/jvm/java-1.5.0-sun Dir not added: /usr/lib/jvm/java-6-openjdk Dir not added: /home/javaplt/java/Linux-i686 File not added: /System/Library/Frameworks/JavaVM.framework/Versions/1.3.1/lib/tools.jar File added: /System/Library/Frameworks/JavaVM.framework/Versions/1.3.1/Classes/classes.jar File not added: /System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/lib/tools.jar File added: /System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Classes/classes.jar File not added: /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/lib/tools.jar File added: /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/classes.jar File not added: /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/lib/tools.jar File added: /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/classes.jar File not added: /C:/Program Files/JavaMint/langtools/dist/lib/classes.jar File not added: /C:/Program Files/JavaMint/langtools/dist/lib/tools.jar File not added: /packages/soylatte16-i386-1.0.3/lib/classes.jar File added: /packages/soylatte16-i386-1.0.3/lib/tools.jar File added: /usr/local/JavaMint/langtools/dist/lib/classes.jar File not added: /usr/local/JavaMint/langtools/dist/lib/tools.jar MINT_HOME not set File added: <anonymized user.dir>/DrJava.app/Contents/Resources/Java/drjava.jar mintLib: Java 6.0_21-Mint /usr/local/JavaMint/langtools/dist/lib/classes.jar exact? Java 6.0_3-p3 exact? Java 6.0 exact? Java 5.0 exact? Java 1.4.2 exact? Java 1.3.1 major? Java 6.0_3-p3 found ==> Java 6.0_21-Mint Result: Found library: JDK library 6.0_3-p3 at /packages/soylatte16-i386-1.0.3/lib/tools.jar, boot classpath: [/packages/soylatte16-i386-1.0.3/jre/lib/charsets.jar, /packages/soylatte16-i386-1.0.3/jre/lib/jce.jar, /packages/soylatte16-i386-1.0.3/jre/lib/jsse.jar, /packages/soylatte16-i386-1.0.3/jre/lib/management-agent.jar, /packages/soylatte16-i386-1.0.3/jre/lib/resources.jar, /packages/soylatte16-i386-1.0.3/jre/lib/rt.jar] Found library: JDK library 6.0 at /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/classes.jar, boot classpath: [/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/charsets.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/classes.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/dt.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jce.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jconsole.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jsse.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/laf.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/management-agent.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/ui.jar] Found library: JDK library 5.0 at /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/classes.jar, boot classpath: [/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/charsets.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/classes.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/dt.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/jce.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/jconsole.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/jsse.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/laf.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/ui.jar] Found library: JDK library 1.4.2 at /System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Classes/classes.jar, boot classpath: null Found library: JDK library 1.3.1 at /System/Library/Frameworks/JavaVM.framework/Versions/1.3.1/Classes/classes.jar, boot classpath: null Found library: JDK library 6.0_21-Mint at /usr/local/JavaMint/langtools/dist/lib/classes.jar, boot classpath: [/usr/local/JavaMint/langtools/dist/lib/classes.jar, /packages/soylatte16-i386-1.0.3/jre/lib/charsets.jar, /packages/soylatte16-i386-1.0.3/jre/lib/jce.jar, /packages/soylatte16-i386-1.0.3/jre/lib/jsse.jar, /packages/soylatte16-i386-1.0.3/jre/lib/management-agent.jar, /packages/soylatte16-i386-1.0.3/jre/lib/resources.jar, /packages/soylatte16-i386-1.0.3/jre/lib/rt.jar] >From search: JDK library 6.0_3-p3 at /packages/soylatte16-i386-1.0.3/lib/tools.jar, boot classpath: [/packages/soylatte16-i386-1.0.3/jre/lib/charsets.jar, /packages/soylatte16-i386-1.0.3/jre/lib/jce.jar, /packages/soylatte16-i386-1.0.3/jre/lib/jsse.jar, /packages/soylatte16-i386-1.0.3/jre/lib/management-agent.jar, /packages/soylatte16-i386-1.0.3/jre/lib/resources.jar, /packages/soylatte16-i386-1.0.3/jre/lib/rt.jar] >From search: JDK library 6.0 at /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/classes.jar, boot classpath: [/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/charsets.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/classes.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/dt.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jce.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jconsole.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jsse.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/laf.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/management-agent.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/ui.jar] >From search: JDK library 5.0 at /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/classes.jar, boot classpath: [/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/charsets.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/classes.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/dt.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/jce.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/jconsole.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/jsse.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/laf.jar, /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/ui.jar] >From search: JDK library 1.4.2 at /System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Classes/classes.jar, boot classpath: null >From search: JDK library 1.3.1 at /System/Library/Frameworks/JavaVM.framework/Versions/1.3.1/Classes/classes.jar, boot classpath: null >From search: JDK library 6.0_21-Mint at /usr/local/JavaMint/langtools/dist/lib/classes.jar, boot classpath: [/usr/local/JavaMint/langtools/dist/lib/classes.jar, /packages/soylatte16-i386-1.0.3/jre/lib/charsets.jar, /packages/soylatte16-i386-1.0.3/jre/lib/jce.jar, /packages/soylatte16-i386-1.0.3/jre/lib/jsse.jar, /packages/soylatte16-i386-1.0.3/jre/lib/management-agent.jar, /packages/soylatte16-i386-1.0.3/jre/lib/resources.jar, /packages/soylatte16-i386-1.0.3/jre/lib/rt.jar] ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3056277&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-08-20 19:15:23
|
Bugs item #3049619, was opened at 2010-08-20 19:15 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3049619&group_id=44253 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Language Levels Group: 4: Serious Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: KxJnuz <a href="http://weurlutbwsnu.com/">weurlutbwsnu</a>, Initial Comment: KxJnuz <a href="http://weurlutbwsnu.com/">weurlutbwsnu</a>, [url=http://dmswcbrerujq.com/]dmswcbrerujq[/url], [link=http://pgihrsvoafay.com/]pgihrsvoafay[/link], http://itoozyslxgxg.com/ ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3049619&group_id=44253 |
From: Mathias R. <mgr...@ri...> - 2010-08-16 18:46:21
|
Dear DrJava Users: We have made a new stable version available: drjava-stable-20100816-r5366 You can download it from the DrJava website at http://drjava.org/ or from SourceForge.net by following this link: http://sourceforge.net/projects/drjava/files/1.%20DrJava%20Stable%20Releases/drjava-stable-20100816-r5366/ You receive this email because you have subscribed to a DrJava mailing list. Available for download at http://drjava.org . DrJava is a lightweight programming environment for Java designed to foster test-driven software development. It includes an intelligent program editor, an interactions pane for evaluating program text, a source level debugger, and a unit testing tool. In addition to bug fixes, this stable release includes a number of new features introduced after the last beta release: These features include improved keyboard shortcuts, improved undo/redo functionality outside the Definitions Pane, as well as better menus for detached windows on the Mac. Note: Java 1.4 compatibility has been dropped. To use DrJava, you will need Java 5 or newer. New features since the last beta release: - Keyboard shortcuts for Project menu items. - Menus for detached windows on Mac OS. - Undo/Redo for Input Box and detached Interactions Pane. - Keyboard shortcuts available in detached windows. - Displaying compiz warning only for Java older than 1.6.0_20. - Changing the default look-and-feel for non-Windows, non-Mac machines (=Linux) to the system default. This will probably be GTK instead of Metal, which is much prettier. Bug fixes since last beta release: - Properly disabled 'Run Project's Main Class' if main class not set. - Bugfix for a problem relating to menu item availability, which caused the project menu to be disabled when it should be enabled. - IllegalAccessException with Smart Run on non-Public class. - Fixed NullPointerException when removing Find All matches - Fixed a bug that caused a NullPointerException when a Find All encountered a missing file - Fixed bug StringIndexOutOfBoundsException on non-Western systems that use characters longer than a byte. - Fixed bug that caused Undo/Redo menu items to not be enabled properly - Fixed bug that caused pressing Ctrl-Z (Undo) to make the System.in box disappear - Fixed bug that caused { or } to be inserted on Linux when using "Go to Opening/Closing Brace" shortcuts. - Fixed a bug that enabled Undo for the Interactions Pane on Macs even when there was nothing to undo. - Fixed problem that prevented configuration of key bindings for actions with the same names, e.g. "New" (File) and "New" (Project). - Fixed bug that caused changes to Key Bindings to not be canceled properly New features since the last stable release: - The Eclipse Java Compiler is now integrated into DrJava. DrJava therefore does not require the JDK anymore to compile programs. Note that the JDK is still required to use the debugger or to create Javadoc. - DrJava supports the OpenJDK and JavaMint (multi-stage programming in Java; see http://www.javamint.org/ ) compilers. - JUnit 4.7 support. - ConcJUnit support (for concurrent unit tests; see http://www.concutest.org/ ). - Access control for private and package private members now enabled by default. - DynamicJava (Interpreter) error messages are much better, especially those involving method and constructor invocation. - Added support in DynamicJava for explicit type arguments in local function invocations (x = foo(23)). - The Breakpoint, Bookmarks, and Find Results tabbed panes now have Previous/Next buttons and associated keyboard shortcuts for simpler browsing. - The Interactions Pane working directory can now be specified even when not using projects. - If DrJava cannot start, for example because of bad memory settings in the Preferences, DrJava will suggest that you let it reset the Preferences. - The preferred compiler can now be set, and this setting will be restored when DrJava starts the next time. - Zoom for Print Preview. - New Class wizard. - Save Copy ability for Definitions documents, Interactions Pane and Console Pane contents. - The Java Language Level facility has been simplified. There now is only one language level called "Functional Java", using the file extension .dj. It is comparable to the Intermediate level and can still compile .dj0 and .dj1 files. .dj2 files are compiled using the Full Java compiler. DrJava will suggest that you rename .dj0 and .dj1 files to .dj files, and .dj2 files to .java files. - DrJava can generate a custom .jar file of itself that includes additional files. There is a Tools/Advanced/Generate Custom drjava.jar menu item that takes the current DrJava executable file and a number of user-specified files to generate a new jar file. * The libraries included in the new jar file will then automatically be included in the classpath and be usable without adding them to a classpath somewhere. * There is no functionality to remove the libraries again from the modified jar file. * Generating a custom DrJava jar file disables the check for updated versions. Otherwise a user may download an updated version that doesnt have required libraries anymore. - When DrJava encounters missing files during a "Find All" search, it will ask the user whether to continue or abort the search. - Improved "New Java Class" dialog with some auto-completion. - Better feedback when Java API data is loaded, which may involve some delay if it is retrieved from the internet. - There is a new option in Preferences/Interactions Pane called "Smart Run ('java') Command". If enabled (default), the "Run" button and the "java" command in the Interactions Pane detects if the class (a) is an ACM Java Task Force program (subclass of acm.program.Program) or (b) an applet. If (a), then it runs the program's main method, but inserts "code=MyClass" as argument 0. If (b), it starts the applet viewer. Otherwise, the "java" command behaves just as before. - Right margin line. - Improved Save As file naming. - Tools->Advanced->New DrJava Instance feature. - Appending .jar to file name when generating custom DrJava. Bug fixes since the last stable release: - Fixed some indentation bugs. - Fixed some GUI initialization problems that prevented DrJava from starting on some systems. - Fixed a bug that prevented DrJava from opening on MacOS 10.5 or 10.6. - Fixed compiler error when closing curly brace missing. - Fixed NullPointerException in Jar Project dialog. - Fixed a bug that prevented users from editing External Processes. - Fixed a bug in un-commenting source code. - Fixed a bug in displaying the Auto-Import dialog in the Interactions Pane. - Improved suggestion to increase interactions JVM heap. - Improved responsiveness when selecting a compiler. - Fixed a bug that prevented users from generating Javadoc of Language Level files. - DynamicJava (Interpreter) bug fix allows the declaration of interfaces. - Miscellaneous small DynamicJava bug fixes make it much more robust and correct, including better handling of member lookup, inner classes, enums, interfaces, raw types, static imports, switch statements, casts, and final variables. - Bugfix for comparing 0.0 == -0.0 and NaNs. - Bugfix in DynamicJava: Supports annotation declarations - Bugfix in DynamicJava: Fixes parser bug for enums - Bugfix in DynamicJava: Fixes implicit accessibility of interface members - Bugfix in DynamicJava: Fixes checking of assignments from character literals - Bugfix in DynamicJava: Improves checking of casts - Bugfix in DynamicJava: getClass() is a special method with type Class for all classes - Bugfix in DynamicJava: Improves error messages for inner class references - Bugfix in DynamicJava: Preserves location in wildcards - Bugfix in DynamicJava: Catches errors that occur during static initialization of a class - Bugfix in DynamicJava: Short-circuiting during type checking - Bugfix in DynamicJava: += for strings - Bugfix in DynamicJava: Array initializer is assigned to a non-array type - Misc improvements to DynamicJava SoureChecker - Bugfix that prevented users from watching local variables in the Debugger. - Smaller Java Language Level fixes. - StringIndexOutOfBoundsException During Next Word - Exception when double click on External process tab - This commit fixes some glitches in the new functional LL, effectively subsuming both the Elementary (.dj0) and Intermediate (.dj1) language levels. - Bugfix for throw null - Fixing a memory leak in DefinitionsPane. [SourceForge.net Release] drjava : 1. DrJava Stable Releases Project: DrJava (drjava) Package: 1. DrJava Stable Releases Date : 2010-08-16 |
From: Mathias R. <mgr...@ri...> - 2010-08-15 17:07:22
|
Dear DrJava Users: Our website is available again under the usual address: http://drjava.org . We apologize for the inconvenience. Thanks for using DrJava! Mathias Ricken PhD Candidate Computer Science Rice University On Sat, Aug 14, 2010 at 2:59 PM, Mathias Ricken <mgr...@ri...> wrote: > Dear DrJava Users: > > Our website is currently not available under the usual address ( > http://drjava.org ). We are working on fixing this problem as quickly > as possible. > > If you need access to the DrJava website in the meantime, please use > one of these two URLs instead: > > http://drjava.sourceforge.net/ > http://www.cs.rice.edu/~javaplt/drjava/ > > We apologize for the inconvenience. Thanks for using DrJava! > > Mathias Ricken > PhD Candidate > Computer Science > Rice University > |
From: Mathias R. <mgr...@ri...> - 2010-08-14 19:59:50
|
Dear DrJava Users: Our website is currently not available under the usual address ( http://drjava.org ). We are working on fixing this problem as quickly as possible. If you need access to the DrJava website in the meantime, please use one of these two URLs instead: http://drjava.sourceforge.net/ http://www.cs.rice.edu/~javaplt/drjava/ We apologize for the inconvenience. Thanks for using DrJava! Mathias Ricken PhD Candidate Computer Science Rice University |
From: SourceForge.net <no...@so...> - 2010-08-14 01:41:29
|
Bugs item #3044689, was opened at 2010-08-13 20:41 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3044689&group_id=44253 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: UI: MacOS X-specific Group: None Status: Open Resolution: None Priority: 8 Private: No Submitted By: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: Mac Menu Accelerators Only Update in One Frame Initial Comment: On the Mac, detached frames have menu bars as well, in addition to the Main Frame. When key bindings are changed, the accelerators are only updated in one of the frames (the detached debugger frame), not in the other ones. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3044689&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-08-14 01:31:04
|
Bugs item #3044686, was opened at 2010-08-13 20:30 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3044686&group_id=44253 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: User interface Group: 3: Ugly Status: Open Resolution: None Priority: 5 Private: No Submitted By: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: Changes to Key Bindings Not Canceled Properly Initial Comment: If key bindings are edited in the Preferences window, but then the Cancel button is pressed, the key bindings are not properly canceled. The old key bindings remain in effect, as they should, but if the user brings up the Preferences again, the key bindings that were not applied are still shown in the "Current action bound to the keystroke" line. Example: 1. Command-N is "File/New" by default. 2. Go to preferences, delete Command-N from "File/New". 3. Add Command-Option-N for "File/New". 4. Press Cancel. 5. Now Command-N will still do "File/New" and Command-Option-N won't, and this is all correct. 6. Go to preferences again. 7. Try to add Command-Option-N to anything. DrJava will display that Command-Option-N is still bound to "File/New". That is incorrect. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3044686&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-08-13 20:05:35
|
Feature Requests item #3044574, was opened at 2010-08-13 13:05 Message generated for change (Tracker Item Submitted) made by stephendgilbert You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438938&aid=3044574&group_id=44253 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: User interface Group: None Status: Open Priority: 5 Private: No Submitted By: Stephen Gilbert (stephendgilbert) Assigned to: Nobody/Anonymous (nobody) Summary: Display Unicode in Console Initial Comment: I'm not sure if this is even possible. When I'm telling students about Unicode, I have them type a Unicode escape sequence as part of a String (say "\u221a") and when they press Enter DrJava displays the actual character. However, if they use System.out.println() to display it in the same console, they get the dreaded ?. I've Googled a bit and found some solutions for the Mac Terminal and the Eclipse console, but none of those solutions seemed to work with DrJava. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438938&aid=3044574&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-08-12 20:07:22
|
Bugs item #3043918, was opened at 2010-08-12 15:07 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3043918&group_id=44253 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: UI: MacOS X-specific Group: None Status: Open Resolution: None Priority: 3 Private: No Submitted By: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: Mac Starts Out with Undo Enabled for Interactions Initial Comment: On Mac OS, when you switch to the Interactions Pane right after starting DrJava and without having typed anything, Undo is already enabled. It shouldn't be. You can undo something, and then redo something, although nothing seems to happen. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3043918&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-08-12 19:55:10
|
Bugs item #3043905, was opened at 2010-08-12 14:55 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3043905&group_id=44253 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: User interface Group: 3: Ugly Status: Open Resolution: None Priority: 7 Private: No Submitted By: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: Pressing Ctrl-Z (Undo) Makes System.in Box Disappear Initial Comment: When pressing Ctrl-Z while entering test in a System.in box, the whole input box disappears, and the program is stuck. Type the following in the Interactions Pane: System.in.read() Then press Ctrl-Z. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3043905&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-08-11 17:24:46
|
Bugs item #3043199, was opened at 2010-08-11 12:24 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3043199&group_id=44253 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: User interface Group: None Status: Open Resolution: None Priority: 8 Private: No Submitted By: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: Undo/Redo Menu Items Not Enabled Properly Initial Comment: When switching back and forth between (a not detached) interactions pane and definitions pane, the Undo/Redo menu items aren't enabled/disabled properly. The Undo/Redo toolbar buttons are enabled/disabled properly. Also, the keyboard shortcuts seem to be enabled when Undo/Redo is possible in the definitions pane, even when the focus is in the interactions pane. This causes CannotUndoExceptions, because an Undo is attempted when it is possible in the definitions pane but impossible in the interactions pane. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3043199&group_id=44253 |