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...> - 2009-06-02 19:40:01
|
Bugs item #2800176, was opened at 2009-06-02 19:39 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2800176&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: 4: Serious Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: DrJava cannot find jre and doesn't start. Initial Comment: I just downloaded the latest beta: drjava-beta-20090505-r4932.exe. When I click the .exe file, I get the error message: "This application requires a Java Runtime Environment 1.5.0" There are actually plenty to choose from in my environment: gov-usr76@moonlander:/cygdrive/c/java> ls jdk-1_5_0-doc jdk1.5.0_15 jdk1.5.0_16 jdk1.6.0_05 jre1.5.0_15 gov-usr76@moonlander:/cygdrive/c/java> which java /cygdrive/c/java/jdk1.5.0_15/bin/java ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2800176&group_id=44253 |
From: SourceForge.net <no...@so...> - 2009-06-01 15:30:12
|
Bugs item #2799515, was opened at 2009-06-01 10:30 Message generated for change (Tracker Item Submitted) made by eallen You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2799515&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: util package Group: None Status: Open Resolution: None Priority: 8 Private: No Submitted By: Eric E. Allen (eallen) Assigned to: Nobody/Anonymous (nobody) Summary: AbstractPredicateSet.isEmpty is backwards Initial Comment: The check in AbstractPredicateSet.isEmpty is backwards. Here is the source code for that test, in file plt/src/edu/rice/cs/plt/collect/AbstractPredicateSet.java: /** Returns {@code size(1) != 0}. */ @Override public boolean isEmpty() { return size(1) != 0; } This function will return true precisely when the receiver set is not empty. The correct code should be: /** Returns {@code size(1) != 0}. */ @Override public boolean isEmpty() { return size(1) == 0; } ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2799515&group_id=44253 |
From: SourceForge.net <no...@so...> - 2009-05-31 04:18:30
|
Bugs item #2798997, was opened at 2009-05-31 04: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=2798997&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: compile error Initial Comment: 1 error found: File: (no associated file) [line: (no source location)] Error: java.lang.NoSuchMethodError: com.sun.tools.javac.util.Options.put(Ljava/lang/String;Ljava/lang/String;)V ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2798997&group_id=44253 |
From: SourceForge.net <no...@so...> - 2009-05-26 14:05:49
|
Bugs item #2796854, was opened at 2009-05-26 14:05 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2796854&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: Problem Initial Comment: java.lang.ArrayIndexOutOfBoundsException at java.lang.System.arraycopy(Native Method) at javax.swing.text.CompositeView.replace(Unknown Source) at javax.swing.text.BoxView.replace(Unknown Source) at javax.swing.text.View.updateChildren(Unknown Source) at javax.swing.text.View.insertUpdate(Unknown Source) at javax.swing.plaf.basic.BasicTextUI$RootView.insertUpdate(Unknown Source) at javax.swing.plaf.basic.BasicTextUI$UpdateHandler.insertUpdate(Unknown Source) at javax.swing.text.AbstractDocument.fireInsertUpdate(Unknown Source) at javax.swing.text.AbstractDocument.handleInsertString(Unknown Source) at javax.swing.text.AbstractDocument.insertString(Unknown Source) at edu.rice.cs.util.text.SwingDocument.forceInsertText(SwingDocument.java:138) at edu.rice.cs.util.text.ConsoleDocument.insertBeforeLastPrompt(ConsoleDocument.java:223) at edu.rice.cs.drjava.model.repl.InteractionsModel.interpreterResetting(InteractionsModel.java:540) at edu.rice.cs.drjava.model.repl.newjvm.MainJVM.killInterpreter(MainJVM.java:565) at edu.rice.cs.drjava.model.repl.RMIInteractionsModel._resetInterpreter(RMIInteractionsModel.java:104) at edu.rice.cs.drjava.model.repl.InteractionsModel.resetInterpreter(InteractionsModel.java:204) at edu.rice.cs.drjava.model.DefaultGlobalModel.resetInteractions(DefaultGlobalModel.java:335) at edu.rice.cs.drjava.model.DefaultGlobalModel.resetInteractions(DefaultGlobalModel.java:311) at edu.rice.cs.drjava.model.DefaultGlobalModel$2.compileEnded(DefaultGlobalModel.java:165) at edu.rice.cs.drjava.model.compiler.CompilerEventNotifier.compileEnded(CompilerEventNotifier.java:86) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel._doCompile(DefaultCompilerModel.java:245) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel.compileAll(DefaultCompilerModel.java:139) at edu.rice.cs.drjava.ui.MainFrame._compileAll(MainFrame.java:4209) at edu.rice.cs.drjava.ui.MainFrame.access$4100(MainFrame.java:106) at edu.rice.cs.drjava.ui.MainFrame$44.actionPerformed(MainFrame.java:680) 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 20070130-2255 java.runtime.name = Java(TM) SE Runtime Environment sun.boot.library.path = <anonymized user.dir>Program Files\Java\jre1.6.0_07\bin java.vm.version = 10.0-b23 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 = NZ sun.os.patch.level = Service Pack 1 java.vm.specification.name = Java Virtual Machine Specification user.dir = <anonymized user.dir> java.runtime.version = 1.6.0_07-b06 java.awt.graphicsenv = sun.awt.Win32GraphicsEnvironment java.endorsed.dirs = <anonymized user.dir>Program Files\Java\jre1.6.0_07\lib\endorsed os.arch = x86 java.io.tmpdir = <anonymized user.home>\AppData\Local\Temp\ line.separator = "\u000d\u000a" java.vm.specification.vendor = Sun Microsystems Inc. user.variant = os.name = Windows Vista sun.jnu.encoding = Cp1252 java.library.path = <anonymized user.dir>Program Files\Java\jre1.6.0_07\bin;.;<anonymized user.dir>Windows\Sun\Java\bin;<anonymized user.dir>Windows\system32;<anonymized user.dir>Windows;<anonymized user.dir>Windows\system32;<anonymized user.dir>Windows;<anonymized user.dir>Windows\System32\Wbem;<anonymized user.dir>Windows\System32\WindowsPowerShell\v1.0\;<anonymized user.dir>Program Files\QuickTime\QTSystem\ java.specification.name = Java Platform API Specification java.class.version = 50.0 sun.management.compiler = HotSpot Client Compiler os.version = 6.0 user.home = <anonymized user.home> user.timezone = Pacific/Auckland java.awt.printerjob = sun.awt.windows.WPrinterJob file.encoding = Cp1252 java.specification.version = 1.6 java.class.path = <anonymized user.dir>drjava-stable-20070130-2255.exe;<anonymized user.dir>Program Files\Java\jdk1.6.0_02\lib\tools.jar user.name = <anonymized user.name> java.vm.specification.version = 1.0 java.home = <anonymized user.dir>Program Files\Java\jre1.6.0_07 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_07 java.ext.dirs = <anonymized user.dir>Program Files\Java\jre1.6.0_07\lib\ext;<anonymized user.dir>Windows\Sun\Java\lib\ext sun.boot.class.path = <anonymized user.dir>Program Files\Java\jre1.6.0_07\lib\resources.jar;<anonymized user.dir>Program Files\Java\jre1.6.0_07\lib\rt.jar;<anonymized user.dir>Program Files\Java\jre1.6.0_07\lib\sunrsasign.jar;<anonymized user.dir>Program Files\Java\jre1.6.0_07\lib\jsse.jar;<anonymized user.dir>Program Files\Java\jre1.6.0_07\lib\jce.jar;<anonymized user.dir>Program Files\Java\jre1.6.0_07\lib\charsets.jar;<anonymized user.dir>Program Files\Java\jre1.6.0_07\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.awt.exception.handler = edu.rice.cs.drjava.ui.DrJavaErrorHandler sun.cpu.isalist = pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86 #DrJava configuration file #Wed May 27 02:04:08 NZST 2009 font.main = Calibri-16 lineenum.enabled = true key.delete.next = shift DELETE key.delete.previous = shift BACK_SPACE interactions.exit.prompt = false quit.prompt = false interactions.reset.prompt = false save.before.compile = true recent.files = [<anonymized user.dir>\Users\\<anonymized user.name>\\Desktop\\Java Sample Test\\ONE\\ManyPlayers.java,<anonymized user.dir>\Users\\<anonymized user.name>\\Desktop\\Java Sample Test\\ONE\\Player.java,<anonymized user.dir>\Users\\<anonymized user.name>\\Desktop\\Java Sample Test\\Answers\\Player.java,<anonymized user.dir>\Users\\<anonymized user.name>\\Desktop\\Java Sample Test\\Answers\\ManyPlayers.java,<anonymized user.dir>\Users\\<anonymized user.name>\\Desktop\\Java Sample Test\\Player.java] window.height = 1000 window.width = 1280 window.x = 0 window.y = 0 last.dir = <anonymized user.dir>\Users\\<anonymized user.name>\\Desktop\\Java Sample Test\\ONE\\ManyPlayers.java last.interactions.dir = <anonymized user.dir>\Users\\<anonymized user.name>\\Desktop\\Java Sample Test\\ONE Used memory: about 27.75 megabytes Free memory: about 1.13 megabytes Total memory: about 28.90 megabytes Total memory can expand to: about 127.06 megabytes ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2796854&group_id=44253 |
From: SourceForge.net <no...@so...> - 2009-05-25 00:40:07
|
Bugs item #2796228, was opened at 2009-05-25 00:40 Message generated for change (Tracker Item Submitted) made by rcartwright You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2796228&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: 7 Private: No Submitted By: Robert Cartwright (rcartwright) Assigned to: Nobody/Anonymous (nobody) Summary: Compiz causes numerous Java Swing bugs Initial Comment: In Linux with Compiz is enabled, DrJava breaks in a multitude of ways. Since mid-2006, Sun has acknowledged problems with running AWT/Swing in the context of Compiz but has not been very responsive in fixing the problem. I recently installed Ubuntu 9.04 on a new laptop and was dismayed when DrJava blew up in various ways (crashing the OS when opening a folder to populate a project, failing to resize the mainframe, displaying blank popup dialog screens, etc.). I never enable compiz but I wondered if it was enabled by default in Ubuntu 9.04. Voila! It is. We need to check on startup if compiz is enabled and warn users that DrJava may fail catastrophically if it continues. We should also point to a browser page that explains the best way to disable compiz, a question that I cannot answer at this time. I uninstalled all packages with compiz in the name and rebooted which seemed to work but that procedure is too drastic for many users (who might want to selectively disable compiz when running certain applications. For the record, I was running Java 6.0_Update 13 and Java 5.0 Update 18 when these problems occurred. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2796228&group_id=44253 |
From: SourceForge.net <no...@so...> - 2009-05-24 23:58:45
|
Bugs item #2796224, was opened at 2009-05-24 23:58 Message generated for change (Tracker Item Submitted) made by rcartwright You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2796224&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: Robert Cartwright (rcartwright) Assigned to: Nobody/Anonymous (nobody) Summary: Compiler not found in JDKs installed as linux packages Initial Comment: In Ubuntu 8.10/9.04 (and apparently in most other Linux distributions) various Java JDKs are installed as Linux packages in /usr/lib/jvm/<dir> where <dir> is either java-6-sun, java-6-openjdk, or java-1.5.0-sun (these "dirs" may be symbolic links to specific versions such as java-6-sun-1.6.0.13). The search-for-javac protocol in DrJava does not look in any directories of the form /usr/lib/jvm/* unless JAVA_HOME is set to one of them. DrJava should find javac in any of the default Linux JDK packages. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2796224&group_id=44253 |
From: Yiling H. <u44...@an...> - 2009-05-18 14:01:15
|
This is a patch translate the latest released DrJava into Chinese. |
From: Yiling H. <u44...@an...> - 2009-05-17 11:05:56
|
anybody using IRC? |
From: Yiling H. <u44...@an...> - 2009-05-17 03:06:00
|
Hi all, I'm a university student doing a FOSS project at the moment. My focus is to translate the project i found - DrJava into another language. Anybody had done that before can provide me some help? thanks! |
From: Yiling H. <u44...@an...> - 2009-05-14 08:21:33
|
Hi all, I'm a university student doing a FOSS project at the moment. My focus is to translate the project i found - DrJava into another language. Anybody had done that before can provide me some help? thanks! |
From: SourceForge.net <no...@so...> - 2009-05-13 14:01:00
|
Bugs item #2791201, was opened at 2009-05-13 14:00 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2791201&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: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Error during compilation Initial Comment: I hv found 84 error during compilation in ecplise, I just copied one of them also i attach picture.Plzz help me. java.lang.NoSuchMethodError: edu.rice.cs.plt.iter.IterUtil.compose(Lcom/rc/retroweaver/runtime/Iterable_;Lcom/rc/retroweaver/runtime/Iterable_;)Ledu/rice/cs/plt/iter/ComposedIterable; at edu.rice.cs.dynamicjava.symbol.SymbolUtil.allTypeParameters(SymbolUtil.java:106) at edu.rice.cs.dynamicjava.symbol.ExtendedTypeSystem.makeClassType(ExtendedTypeSystem.java:1139) at edu.rice.cs.dynamicjava.symbol.ExtendedTypeSystem.<init>(ExtendedTypeSystem.java:34) at edu.rice.cs.dynamicjava.symbol.ExtendedTypeSystem.<clinit>(ExtendedTypeSystem.java:23) at edu.rice.cs.dynamicjava.Options.typeSystem(Options.java:13) at edu.rice.cs.dynamicjava.interpreter.Interpreter.<init>(Interpreter.java:31) at edu.rice.cs.dynamicjava.interpreter.Interpreter.<init>(Interpreter.java:40) at edu.rice.cs.drjava.model.repl.newjvm.InterpreterJVM.<init>(InterpreterJVM.java:137) at edu.rice.cs.drjava.model.repl.newjvm.InterpreterJVM.<clinit>(InterpreterJVM.java:93) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:169) at edu.rice.cs.util.newjvm.SlaveJVMRunner.main(SlaveJVMRunner.java:168) System Properties: DrJava Version drjava-20080904-r4668 DrJava Build Time 20080904-1941 drjava.debug.port = 1973 java.runtime.name = Java(TM) SE Runtime Environment sun.boot.library.path = C:\Program Files\Java\jdk1.6.0_06\jre\bin java.vm.version = 10.0-b22 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 = Service Pack 3 java.vm.specification.name = Java Virtual Machine Specification user.dir = <anonymized user.home>\workspace\Dr.Java java.runtime.version = 1.6.0_06-b02 java.awt.graphicsenv = sun.awt.Win32GraphicsEnvironment java.endorsed.dirs = C:\Program Files\Java\jdk1.6.0_06\jre\lib\endorsed os.arch = x86 java.io.tmpdir = C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\ line.separator = "\u000d\u000a" java.vm.specification.vendor = Sun Microsystems Inc. user.variant = os.name = Windows XP sun.jnu.encoding = Cp1252 java.library.path = C:\Program Files\Java\jdk1.6.0_06\bin;.;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:/Program Files/Java/jre6/bin/client;C:/Program Files/Java/jre6/bin;C:\Program Files\MiKTeX 2.7\miktex\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\PROGRA~1\DISKEE~1\DISKEE~1\;C:\Program Files\Java\jdk1.6.0_06\bin;C:\WINDOWS\system32\WindowsPowerShell\v1.0 java.specification.name = Java Platform API Specification java.class.version = 50.0 sun.management.compiler = HotSpot Client Compiler os.version = 5.1 user.home = <anonymized user.home> user.timezone = Europe/Berlin java.awt.printerjob = sun.awt.windows.WPrinterJob file.encoding = Cp1252 java.specification.version = 1.6 java.class.path = <anonymized user.home>\workspace\Dr.Java\bin;C:\Program Files\Java\jdk1.6.0_06\lib\tools.jar;<anonymized user.home>\My Documents\Downloads\dr.java\dr.java\lib\plt.jar;<anonymized user.home>\My Documents\Downloads\dr.java\dr.java\lib\junit.jar;<anonymized user.home>\My Documents\Downloads\dr.java\dr.java\drjava-stable-20080904-r4668.jar user.name = <anonymized user.name> java.vm.specification.version = 1.0 java.home = C:\Program Files\Java\jdk1.6.0_06\jre 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 java.version = 1.6.0_06 java.ext.dirs = C:\Program Files\Java\jdk1.6.0_06\jre\lib\ext;C:\WINDOWS\Sun\Java\lib\ext sun.boot.class.path = C:\Program Files\Java\jdk1.6.0_06\jre\lib\resources.jar;C:\Program Files\Java\jdk1.6.0_06\jre\lib\rt.jar;C:\Program Files\Java\jdk1.6.0_06\jre\lib\sunrsasign.jar;C:\Program Files\Java\jdk1.6.0_06\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.6.0_06\jre\lib\jce.jar;C:\Program Files\Java\jdk1.6.0_06\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.6.0_06\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 = windows sun.awt.exception.handler = edu.rice.cs.drjava.ui.DrJavaErrorHandler sun.cpu.isalist = pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86 #DrJava configuration file #Wed May 13 15:58:28 CEST 2009 key.delete.next = shift DELETE key.delete.previous = shift BACK_SPACE interactions.exit.prompt = false quit.prompt = false recent.files = [C:\\Documents and Settings\\<anonymized user.name>\\Desktop\\HelloWorld.java] recent.projects = [C:\\Documents and Settings\\<anonymized user.name>\\Desktop\\1.pjt] window.height = 879 window.width = 1448 window.x = -4 window.y = -4 window.state = 7 doc.list.width = 293 last.dir = C:\\Documents and Settings\\<anonymized user.name>\\Desktop last.interactions.dir = C:\\Documents and Settings\\<anonymized user.name>\\Desktop new.version.notification.last = 1242223028140 Used memory: about 9.65 megabytes Free memory: about 6.83 megabytes Total memory: about 16.48 megabytes Total memory can expand to: about 63.56 megabytes ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2791201&group_id=44253 |
From: SourceForge.net <no...@so...> - 2009-05-08 13:26:17
|
Bugs item #2788986, was opened at 2009-05-08 08:26 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2788986&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: DynamicJava Group: None Status: Open Resolution: None Priority: 9 Private: No Submitted By: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: Array Interpreter Bugs Initial Comment: x = new Integer[] { 0, 1 }; x[0] = true; // The error should be an ArrayStoreException Object y = new Integer[] { 0 }; y[0] = 7; // No error should be generated Object a = new Integer[] { 0, 1}; a[0] = true // The error should be an ArrayStoreException a[0] = 12; // Should not be an error Object[] c = new Integer[] { 1, 2 }; c[0] = true // An ArrayStoreException should be generated; a DrJava error is generated. c[0] = "A" // Same as above ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2788986&group_id=44253 |
From: SourceForge.net <no...@so...> - 2009-05-06 01:01:24
|
Bugs item #2787603, was opened at 2009-05-06 11:01 Message generated for change (Tracker Item Submitted) made by ngemil You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2787603&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: Performance Group: 4: Serious Status: Open Resolution: None Priority: 5 Private: No Submitted By: ricco chairani (ngemil) Assigned to: Nobody/Anonymous (nobody) Summary: i cant run dr java in netbooks Initial Comment: i tried to open dr java and eclipse and both of them can not run? any way for me to do it? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2787603&group_id=44253 |
From: SourceForge.net <no...@so...> - 2009-05-01 03:31:55
|
Bugs item #2784774, was opened at 2009-04-30 22:31 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2784774&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: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: Stack Trace in Debugger Stack Window Not Showing dj? Line Initial Comment: The stack trace in the Debugger's Stack window shows the line numbers of the .java files, not of the .dj? source files. These line numbers need to be mapped using the LLSTM as well. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2784774&group_id=44253 |
From: SourceForge.net <no...@so...> - 2009-05-01 03:27:43
|
Bugs item #2784770, was opened at 2009-04-30 22:27 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2784770&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: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: Stepping through Language Level File Opens .java File Initial Comment: Set a breakpoint in a .dj? file, enable the debugger and start the program so that it hits the breakpoint. Then take a step. DrJava will open the matching .java file and suspend execution there, not in the .dj? file. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2784770&group_id=44253 |
From: SourceForge.net <no...@so...> - 2009-05-01 03:26:13
|
Bugs item #2784769, was opened at 2009-04-30 22:26 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2784769&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: 5 Private: No Submitted By: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: Closing File Removes All Breakpoints/Bookmarks Initial Comment: When a file is closed, all bookmarks and breakpoints are removed, not just the ones in the file that is being closed. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2784769&group_id=44253 |
From: SourceForge.net <no...@so...> - 2009-04-27 19:58:02
|
Bugs item #2782406, was opened at 2009-04-27 14: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=2782406&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: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: Incorrect Error: Cannot access the non-static method Initial Comment: When compiling the program class DJ2DebugTest { public static void main(String[] args) { System.out.println("DJ2DebugTest"); } } the language levels converter generates the error: 1 error found: File: /Users/mgricken/Desktop/debugTest/DJ2DebugTest.dj2 [line: 3] Error: Cannot access the non-static method println from a static context This is incorrect. println is non-static, but out is static. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2782406&group_id=44253 |
From: SourceForge.net <no...@so...> - 2009-04-27 18:11:16
|
Bugs item #2782342, was opened at 2009-04-27 13:11 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2782342&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: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Mathias Ricken (mgricken) Assigned to: Mathias Ricken (mgricken) Summary: UnmarshallException when throwing exceptions Initial Comment: When throwing exceptions, DrJava cannot find the Exception class in some cases. Try saving the following program in a file Bug.java, compiling it, and then interpreting expression that create exceptons but do not throw them followed by a statement that throws one (which will hang after generating a DrJava error). import java.io.IOException; /** Exception class for signalling illegal Laundry input. */ class CommandException extends IOException { CommandException(String s){ super(s); } public static void main(String[] args) throws Exception { throw new CommandException("foo"); } } -- Corky ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2782342&group_id=44253 |
From: SourceForge.net <no...@so...> - 2009-04-21 04:09:02
|
Feature Requests item #2777031, was opened at 2009-04-21 04:08 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438938&aid=2777031&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: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: more advanced syntax coloring requested Initial Comment: I am writing a book using ACM java to learn CSI via arcade game programming. I plan to feature Dr. Java as the desired editor. But it would be *very* helpful if I could get more advanced syntax coloring. Specifically I'd like to be able to set font and colors individually for: - comments - quoted material - java keywords and standard identifiers - identifiers and methods from the acm library - programmer declare identifiers Well, I'm asking a lot but thanks for thinking of it... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438938&aid=2777031&group_id=44253 |
From: Yiling H. <u44...@an...> - 2009-04-17 09:36:51
|
Hi all, I'm a university student in Australian National University, doing a FOSS project atm. My project is focus on translate software from english to other languages. So now, im trying to translate DrJava into Chinese, but i cant find anything about translation. Is that possible that anyone can give me some tips about this. Tell me someting about what kind of licence i need and what declaration I need in my project? cheers William Han |
From: SourceForge.net <no...@so...> - 2009-04-15 23:57:15
|
Bugs item #2766873, was opened at 2009-04-15 18: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=2766873&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: NullPointerException in QuickStart Guide Initial Comment: java.lang.NullPointerException at edu.rice.cs.drjava.ui.QuickStartFrame$1.hyperlinkUpdate(QuickStartFrame.java:94) at javax.swing.JEditorPane.fireHyperlinkUpdate(JEditorPane.java:320) at javax.swing.text.html.HTMLEditorKit$LinkController.activateLink(HTMLEditorKit.java:827) at javax.swing.text.html.HTMLEditorKit$LinkController.mouseClicked(HTMLEditorKit.java:637) at java.awt.AWTEventMulticaster.mouseClicked(AWTEventMulticaster.java:212) at java.awt.Component.processMouseEvent(Component.java:5586) at javax.swing.JComponent.processMouseEvent(JComponent.java:3135) at java.awt.Component.processEvent(Component.java:5348) at java.awt.Container.processEvent(Container.java:2010) at java.awt.Component.dispatchEventImpl(Component.java:4050) at java.awt.Container.dispatchEventImpl(Container.java:2068) at java.awt.Component.dispatchEvent(Component.java:3885) at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4256) at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3945) at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3866) at java.awt.Container.dispatchEventImpl(Container.java:2054) at java.awt.Window.dispatchEventImpl(Window.java:1791) at java.awt.Component.dispatchEvent(Component.java:3885) at java.awt.EventQueue.dispatchEvent(EventQueue.java:463) at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:269) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:190) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:184) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:176) at java.awt.EventDispatchThread.run(EventDispatchThread.java:110) System Properties: DrJava Version drjava-20090415-r4897 DrJava Build Time 20090415-1422 drjava.debug.port = 55298 java.runtime.name = Java(TM) 2 Runtime Environment, Standard Edition sun.boot.library.path = /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries java.vm.version = 1.5.0_16-132 awt.nativeDoubleBuffering = true gopherProxySet = false java.vm.vendor = "Apple Computer, Inc." java.vendor.url = http://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.5.0_16-b06-275 java.awt.graphicsenv = apple.awt.CGraphicsEnvironment java.endorsed.dirs = /System/Library/Frameworks/JavaVM.framework/Versions/1.5.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 = 49.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.5 java.class.path = <anonymized user.dir>/DrJava.app/Contents/Resources/Java/drjava.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/.compatibility/14compatibility.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/.compatibility/14compatibility.jar user.name = <anonymized user.name> apple.awt.graphics.UseQuartz = true java.vm.specification.version = 1.0 java.home = /System/Library/Frameworks/JavaVM.framework/Versions/1.5.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.5.0_16 java.ext.dirs = /Library/Java/Extensions:/System/Library/Java/Extensions:/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Home/lib/ext sun.boot.class.path = /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/classes.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/ui.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/laf.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/sunrsasign.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/jsse.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/jce.jar:/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Classes/charsets.jar java.vendor = Apple Computer, Inc. file.separator = / java.vendor.url.bug = http://developer.apple.com/java/ sun.io.unicode.encoding = UnicodeLittle sun.cpu.endian = little java.rmi.server.hostname = 127.0.0.1 mrj.version = 1040.1.5.0_16-275 sun.awt.exception.handler = apple.awt.CToolkit$EventQueueExceptionHandler sun.cpu.isalist = #DrJava configuration file #Wed Apr 15 18:55:29 CDT 2009 font.line.numbers = Monaco-10 lineenum.enabled = true key.delete.next = [shift DELETE] key.delete.previous = [shift BACK_SPACE] find.replace.match.case = false debug.sourcepath = <anonymized user.home>/Applications:<anonymized user.home>/backup debug.step.exclude = a,b,c 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.additional.links = [http://drjava.org/javadoc/dynamicjava,http://drjava.org/javadoc/drjava,http://drjava.org/javadoc/plt] interactions.exit.prompt = false open.folder.recursive = true recent.files = [<anonymized user.home>/Documents/Java/Foo.java,/Users/Shared/drjava/drjava/src/edu/rice/cs/drjava/ui/config/VectorKeyStrokeOptionComponent.java,/Users/Shared/drjava/drjava/src/edu/rice/cs/drjava/ui/config/VectorKeyStrokeOptionComponentTest.java] recent.projects = [<anonymized user.home>/Documents/Research/Concutest/ClassLoader/ClassLoader.xml,<anonymized user.home>/Desktop/Bug3.xml,<anonymized user.home>/drjava/drjava.xml,<anonymized user.home>/Documents/Research/Mint/java-mint/java-mint.xml] window.height = 776 window.width = 1276 window.x = 0 window.y = 22 window.state = 6 doc.list.width = 0 last.dir = /Users/Shared/drjava/drjava/src/edu/rice/cs/drjava/ui/KeyBindingManager.java last.interactions.dir = /Users/Shared/drjava master.jvm.xmx = 1024 dialog.clipboard.history.state = 425 400 425 210 dialog.gotofile.state = 393 300 441 260 0 dialog.completeword.javaapi = true tabbedpanes.state = 640 400 700 400 dialog.jaroptions.state = 417 273 find.replace.focus.in.defpane = true new.version.notification = weekly experimental builds new.version.notification.last = 1239390206806 drjava.survey.notification.last = 1239805456768 drjava.survey.result.last = http://www.drjava.org/submit-usage.php?rev=4897&os.name=Mac%20OS%20X&os.version=10.4.11&java.version=1.5.0_16&java.vendor=Apple%20Computer,%20Inc. Used memory: about 61.24 megabytes Free memory: about 123.69 megabytes Total memory: about 184.93 megabytes Total memory can expand to: about 1016.12 megabytes ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2766873&group_id=44253 |
From: SourceForge.net <no...@so...> - 2009-04-10 20:27:34
|
Bugs item #2750859, was opened at 2009-04-10 15:27 Message generated for change (Tracker Item Submitted) made by llm1 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2750859&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: 5 Private: No Submitted By: Lee Marinelli (llm1) Assigned to: Nobody/Anonymous (nobody) Summary: could not find LayeredIcon Initial Comment: During coding, after hitting "enter", got this error and the screen blanked out. Moving the mouse over the buttons and highlighting the code made them visible again, but minimizing and maximizing reset it to blank. java.lang.NoClassDefFoundError: edu/rice/cs/util/swing/LayeredIcon at edu.rice.cs.drjava.ui.MainFrame$OddDisplayManager.makeLayeredIcon(MainFrame.java:2930) at edu.rice.cs.drjava.ui.MainFrame$OddDisplayManager.getIcon(MainFrame.java:2925) at edu.rice.cs.drjava.ui.MainFrame$145.getIcon(MainFrame.java:2941) at edu.rice.cs.drjava.ui.MainFrame$145.getIcon(MainFrame.java:2943) at edu.rice.cs.util.docnavigation.JTreeSortNavigator$CustomTreeCellRenderer.getTreeCellRendererComponent(JTreeSortNavigator.java:620) at javax.swing.plaf.basic.BasicTreeUI.paintRow(BasicTreeUI.java:1413) at javax.swing.plaf.basic.BasicTreeUI.paint(BasicTreeUI.java:1203) at javax.swing.plaf.metal.MetalTreeUI.paint(MetalTreeUI.java:152) at javax.swing.plaf.ComponentUI.update(ComponentUI.java:142) at javax.swing.JComponent.paintComponent(JComponent.java:743) at javax.swing.JComponent.paint(JComponent.java:1006) at javax.swing.JComponent.paintChildren(JComponent.java:843) at javax.swing.JComponent.paint(JComponent.java:1015) at javax.swing.JViewport.paint(JViewport.java:728) at javax.swing.JComponent.paintChildren(JComponent.java:843) at javax.swing.JComponent.paint(JComponent.java:1015) at javax.swing.JComponent.paintChildren(JComponent.java:843) at javax.swing.JSplitPane.paintChildren(JSplitPane.java:1021) at javax.swing.JComponent.paint(JComponent.java:1015) at javax.swing.JComponent.paintWithOffscreenBuffer(JComponent.java:4972) at javax.swing.JComponent.paintDoubleBuffered(JComponent.java:4925) at javax.swing.JComponent._paintImmediately(JComponent.java:4868) at javax.swing.JComponent.paintImmediately(JComponent.java:4675) at javax.swing.RepaintManager.paintDirtyRegions(RepaintManager.java:451) at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(SystemEventQueueUtilities.java:114) at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209) at java.awt.EventQueue.dispatchEvent(EventQueue.java:461) at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149) at java.awt.EventDispatchThread.run(EventDispatchThread.java:110) System Properties: DrJava Version drjava-20090410-r4880 DrJava Build Time 20090410-1911 drjava.debug.port = 41021 java.runtime.name = Java(TM) 2 Runtime Environment, Standard Edition sun.boot.library.path = /home/javaplt/java/Linux-i686/jdk1.5.0_14/jre/lib/i386 java.vm.version = 1.5.0_14-b03 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 = unknown java.vm.specification.name = Java Virtual Machine Specification user.dir = <anonymized user.home>/drjava/drjava java.runtime.version = 1.5.0_14-b03 java.awt.graphicsenv = sun.awt.X11GraphicsEnvironment java.endorsed.dirs = /home/javaplt/java/Linux-i686/jdk1.5.0_14/jre/lib/endorsed os.arch = i386 java.io.tmpdir = /tmp line.separator = "\u000a" java.vm.specification.vendor = Sun Microsystems Inc. os.name = Linux sun.jnu.encoding = ANSI_X3.4-1968 java.library.path = /home/javaplt/java/Linux-i686/jdk1.5.0_14/jre/lib/i386/client:/home/javaplt/java/Linux-i686/jdk1.5.0_14/jre/lib/i386:/home/javaplt/java/Linux-i686/jdk1.5.0_14/jre/../lib/i386:/home/javaplt/packages/yjp-6.0.11/bin/linux-x86-32 java.specification.name = Java Platform API Specification java.class.version = 49.0 sun.management.compiler = HotSpot Client Compiler os.version = 2.6.18-92.1.22.el5 user.home = <anonymized user.home> user.timezone = America/Chicago java.awt.printerjob = sun.print.PSPrinterJob file.encoding = ANSI_X3.4-1968 java.specification.version = 1.5 java.class.path = drjava.jar user.name = <anonymized user.name> java.vm.specification.version = 1.0 java.home = /home/javaplt/java/Linux-i686/jdk1.5.0_14/jre sun.arch.data.model = 32 user.language = en java.specification.vendor = Sun Microsystems Inc. java.vm.info = mixed mode, sharing java.version = 1.5.0_14 java.ext.dirs = /home/javaplt/java/Linux-i686/jdk1.5.0_14/jre/lib/ext sun.boot.class.path = /home/javaplt/java/Linux-i686/jdk1.5.0_14/jre/lib/rt.jar:/home/javaplt/java/Linux-i686/jdk1.5.0_14/jre/lib/i18n.jar:/home/javaplt/java/Linux-i686/jdk1.5.0_14/jre/lib/sunrsasign.jar:/home/javaplt/java/Linux-i686/jdk1.5.0_14/jre/lib/jsse.jar:/home/javaplt/java/Linux-i686/jdk1.5.0_14/jre/lib/jce.jar:/home/javaplt/java/Linux-i686/jdk1.5.0_14/jre/lib/charsets.jar:/home/javaplt/java/Linux-i686/jdk1.5.0_14/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 #Fri Apr 10 14:29:04 CDT 2009 key.preferences = key.delete.next = [shift DELETE] key.delete.previous = [shift BACK_SPACE] window.height = 1154 window.width = 1610 window.x = 0 window.y = 25 window.state = 6 last.dir = <anonymized user.home>/drjava/drjava/src/edu/rice/cs/drjava/ui/config/ConfigFrame.java last.interactions.dir = <anonymized user.home>/Desktop tabbedpanes.state = 800 600 700 400 new.version.notification.last = 1239390789352 Used memory: about 35.32 megabytes Free memory: about 23.65 megabytes Total memory: about 58.97 megabytes Total memory can expand to: about 63.56 megabytes ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2750859&group_id=44253 |
From: SourceForge.net <no...@so...> - 2009-04-10 08:01:45
|
Bugs item #2749994, was opened at 2009-04-10 03:01 Message generated for change (Tracker Item Submitted) made by justinfaulkner You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2749994&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: 2: Annoying Status: Open Resolution: None Priority: 5 Private: No Submitted By: Justin Faulkner (justinfaulkner) Assigned to: Nobody/Anonymous (nobody) Summary: internal anonymous inner class exception Initial Comment: Compiling student code in order to grade. Granted, the student code itself looks pretty bad, but an unhelpful error pops up in drjava. 1 error found: File: (no associated file) [line: (no source location)] Error: java.lang.RuntimeException: Internal Program Error: Couldn't find the SymbolData for the anonymous inner class. Please report this bug. Here's the method where the error occurs. I've attached four source files in the attached ZIP for you to compile. ObjectList selection(ObjectList other) { if (other == EmptyObjectList.ONLY) { return EmptyObjectList.ONLY; } else { (rest.selection(other)).MyCons((other.filter( new Predicate() { boolean test(Object o) { if (((Number)o).doubleValue() == ((Number)first).doubleValue()) { return true;} else { return false;} } }).first())); } return null; } edu.rice.cs.util.UnexpectedException: java.lang.RuntimeException: Internal Program Error: Couldn't find the SymbolData for the anonymous inner class. Please report this bug. at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel._doCompile(DefaultCompilerModel.java:246) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel.compileAll(DefaultCompilerModel.java:142) at edu.rice.cs.drjava.ui.MainFrame._compileAll(MainFrame.java:5310) at edu.rice.cs.drjava.ui.MainFrame.access$4800(MainFrame.java:116) at edu.rice.cs.drjava.ui.MainFrame$51.actionPerformed(MainFrame.java:822) at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995) at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318) 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.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:272) at java.awt.Component.processMouseEvent(Component.java:6216) at javax.swing.JComponent.processMouseEvent(JComponent.java:3265) at java.awt.Component.processEvent(Component.java:5981) at java.awt.Container.processEvent(Container.java:2041) at java.awt.Component.dispatchEventImpl(Component.java:4583) at java.awt.Container.dispatchEventImpl(Container.java:2099) at java.awt.Component.dispatchEvent(Component.java:4413) at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4556) at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4220) at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4150) at java.awt.Container.dispatchEventImpl(Container.java:2085) at java.awt.Window.dispatchEventImpl(Window.java:2475) at java.awt.Component.dispatchEvent(Component.java:4413) at java.awt.EventQueue.dispatchEvent(EventQueue.java:599) at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269) at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161) at java.awt.EventDispatchThread.run(EventDispatchThread.java:122) Caused by: java.lang.RuntimeException: Internal Program Error: Couldn't find the SymbolData for the anonymous inner class. Please report this bug. at edu.rice.cs.javalanglevels.Augmentor.forAnonymousClassInstantiation(Augmentor.java:420) at edu.rice.cs.javalanglevels.Augmentor.forSimpleAnonymousClassInstantiation(Augmentor.java:445) at edu.rice.cs.javalanglevels.tree.SimpleAnonymousClassInstantiation.visit(SimpleAnonymousClassInstantiation.java:22) at edu.rice.cs.javalanglevels.tree.JExpressionIFDepthFirstVisitor_void.forParenthesizedExpressionList(JExpressionIFDepthFirstVisitor_void.java:2333) at edu.rice.cs.javalanglevels.tree.ParenthesizedExpressionList.visit(ParenthesizedExpressionList.java:22) at edu.rice.cs.javalanglevels.tree.JExpressionIFDepthFirstVisitor_void.forComplexMethodInvocation(JExpressionIFDepthFirstVisitor_void.java:2265) at edu.rice.cs.javalanglevels.tree.ComplexMethodInvocation.visit(ComplexMethodInvocation.java:29) at edu.rice.cs.javalanglevels.tree.JExpressionIFDepthFirstVisitor_void.forComplexMethodInvocation(JExpressionIFDepthFirstVisitor_void.java:2263) at edu.rice.cs.javalanglevels.tree.ComplexMethodInvocation.visit(ComplexMethodInvocation.java:29) at edu.rice.cs.javalanglevels.tree.JExpressionIFDepthFirstVisitor_void.forParenthesized(JExpressionIFDepthFirstVisitor_void.java:2310) at edu.rice.cs.javalanglevels.tree.Parenthesized.visit(Parenthesized.java:29) at edu.rice.cs.javalanglevels.tree.JExpressionIFDepthFirstVisitor_void.forParenthesizedExpressionList(JExpressionIFDepthFirstVisitor_void.java:2333) at edu.rice.cs.javalanglevels.tree.ParenthesizedExpressionList.visit(ParenthesizedExpressionList.java:22) at edu.rice.cs.javalanglevels.tree.JExpressionIFDepthFirstVisitor_void.forComplexMethodInvocation(JExpressionIFDepthFirstVisitor_void.java:2265) at edu.rice.cs.javalanglevels.tree.ComplexMethodInvocation.visit(ComplexMethodInvocation.java:29) at edu.rice.cs.javalanglevels.tree.JExpressionIFDepthFirstVisitor_void.forExpressionStatement(JExpressionIFDepthFirstVisitor_void.java:1590) at edu.rice.cs.javalanglevels.tree.ExpressionStatement.visit(ExpressionStatement.java:29) at edu.rice.cs.javalanglevels.tree.JExpressionIFDepthFirstVisitor_void.forBracedBody(JExpressionIFDepthFirstVisitor_void.java:2321) at edu.rice.cs.javalanglevels.tree.BracedBody.visit(BracedBody.java:22) at edu.rice.cs.javalanglevels.tree.JExpressionIFDepthFirstVisitor_void.forBlock(JExpressionIFDepthFirstVisitor_void.java:1584) at edu.rice.cs.javalanglevels.tree.Block.visit(Block.java:29) at edu.rice.cs.javalanglevels.tree.JExpressionIFDepthFirstVisitor_void.forIfThenElseStatement(JExpressionIFDepthFirstVisitor_void.java:1612) at edu.rice.cs.javalanglevels.tree.IfThenElseStatement.visit(IfThenElseStatement.java:29) at edu.rice.cs.javalanglevels.tree.JExpressionIFDepthFirstVisitor_void.forBracedBody(JExpressionIFDepthFirstVisitor_void.java:2321) at edu.rice.cs.javalanglevels.tree.BracedBody.visit(BracedBody.java:22) at edu.rice.cs.javalanglevels.Augmentor.forConcreteMethodDef(Augmentor.java:264) at edu.rice.cs.javalanglevels.tree.ConcreteMethodDef.visit(ConcreteMethodDef.java:29) at edu.rice.cs.javalanglevels.tree.JExpressionIFDepthFirstVisitor_void.forBracedBody(JExpressionIFDepthFirstVisitor_void.java:2321) at edu.rice.cs.javalanglevels.tree.BracedBody.visit(BracedBody.java:22) at edu.rice.cs.javalanglevels.Augmentor.forClassDef(Augmentor.java:288) at edu.rice.cs.javalanglevels.tree.ClassDef.visit(ClassDef.java:29) at edu.rice.cs.javalanglevels.Augmentor.forSourceFile(Augmentor.java:472) at edu.rice.cs.javalanglevels.tree.SourceFile.visit(SourceFile.java:43) at edu.rice.cs.javalanglevels.LanguageLevelConverter.convert(LanguageLevelConverter.java:355) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel._compileLanguageLevelsFiles(DefaultCompilerModel.java:485) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel._compileFiles(DefaultCompilerModel.java:312) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel._doCompile(DefaultCompilerModel.java:241) ... 30 more Caused by: java.lang.RuntimeException: Internal Program Error: Couldn't find the SymbolData for the anonymous inner class. Please report this bug. at edu.rice.cs.javalanglevels.Augmentor.forAnonymousClassInstantiation(Augmentor.java:420) at edu.rice.cs.javalanglevels.Augmentor.forSimpleAnonymousClassInstantiation(Augmentor.java:445) at edu.rice.cs.javalanglevels.tree.SimpleAnonymousClassInstantiation.visit(SimpleAnonymousClassInstantiation.java:22) at edu.rice.cs.javalanglevels.tree.JExpressionIFDepthFirstVisitor_void.forParenthesizedExpressionList(JExpressionIFDepthFirstVisitor_void.java:2333) at edu.rice.cs.javalanglevels.tree.ParenthesizedExpressionList.visit(ParenthesizedExpressionList.java:22) at edu.rice.cs.javalanglevels.tree.JExpressionIFDepthFirstVisitor_void.forComplexMethodInvocation(JExpressionIFDepthFirstVisitor_void.java:2265) at edu.rice.cs.javalanglevels.tree.ComplexMethodInvocation.visit(ComplexMethodInvocation.java:29) at edu.rice.cs.javalanglevels.tree.JExpressionIFDepthFirstVisitor_void.forComplexMethodInvocation(JExpressionIFDepthFirstVisitor_void.java:2263) at edu.rice.cs.javalanglevels.tree.ComplexMethodInvocation.visit(ComplexMethodInvocation.java:29) at edu.rice.cs.javalanglevels.tree.JExpressionIFDepthFirstVisitor_void.forParenthesized(JExpressionIFDepthFirstVisitor_void.java:2310) at edu.rice.cs.javalanglevels.tree.Parenthesized.visit(Parenthesized.java:29) at edu.rice.cs.javalanglevels.tree.JExpressionIFDepthFirstVisitor_void.forParenthesizedExpressionList(JExpressionIFDepthFirstVisitor_void.java:2333) at edu.rice.cs.javalanglevels.tree.ParenthesizedExpressionList.visit(ParenthesizedExpressionList.java:22) at edu.rice.cs.javalanglevels.tree.JExpressionIFDepthFirstVisitor_void.forComplexMethodInvocation(JExpressionIFDepthFirstVisitor_void.java:2265) at edu.rice.cs.javalanglevels.tree.ComplexMethodInvocation.visit(ComplexMethodInvocation.java:29) at edu.rice.cs.javalanglevels.tree.JExpressionIFDepthFirstVisitor_void.forExpressionStatement(JExpressionIFDepthFirstVisitor_void.java:1590) at edu.rice.cs.javalanglevels.tree.ExpressionStatement.visit(ExpressionStatement.java:29) at edu.rice.cs.javalanglevels.tree.JExpressionIFDepthFirstVisitor_void.forBracedBody(JExpressionIFDepthFirstVisitor_void.java:2321) at edu.rice.cs.javalanglevels.tree.BracedBody.visit(BracedBody.java:22) at edu.rice.cs.javalanglevels.tree.JExpressionIFDepthFirstVisitor_void.forBlock(JExpressionIFDepthFirstVisitor_void.java:1584) at edu.rice.cs.javalanglevels.tree.Block.visit(Block.java:29) at edu.rice.cs.javalanglevels.tree.JExpressionIFDepthFirstVisitor_void.forIfThenElseStatement(JExpressionIFDepthFirstVisitor_void.java:1612) at edu.rice.cs.javalanglevels.tree.IfThenElseStatement.visit(IfThenElseStatement.java:29) at edu.rice.cs.javalanglevels.tree.JExpressionIFDepthFirstVisitor_void.forBracedBody(JExpressionIFDepthFirstVisitor_void.java:2321) at edu.rice.cs.javalanglevels.tree.BracedBody.visit(BracedBody.java:22) at edu.rice.cs.javalanglevels.Augmentor.forConcreteMethodDef(Augmentor.java:264) at edu.rice.cs.javalanglevels.tree.ConcreteMethodDef.visit(ConcreteMethodDef.java:29) at edu.rice.cs.javalanglevels.tree.JExpressionIFDepthFirstVisitor_void.forBracedBody(JExpressionIFDepthFirstVisitor_void.java:2321) at edu.rice.cs.javalanglevels.tree.BracedBody.visit(BracedBody.java:22) at edu.rice.cs.javalanglevels.Augmentor.forClassDef(Augmentor.java:288) at edu.rice.cs.javalanglevels.tree.ClassDef.visit(ClassDef.java:29) at edu.rice.cs.javalanglevels.Augmentor.forSourceFile(Augmentor.java:472) at edu.rice.cs.javalanglevels.tree.SourceFile.visit(SourceFile.java:43) at edu.rice.cs.javalanglevels.LanguageLevelConverter.convert(LanguageLevelConverter.java:355) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel._compileLanguageLevelsFiles(DefaultCompilerModel.java:485) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel._compileFiles(DefaultCompilerModel.java:312) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel._doCompile(DefaultCompilerModel.java:241) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel.compileAll(DefaultCompilerModel.java:142) at edu.rice.cs.drjava.ui.MainFrame._compileAll(MainFrame.java:5310) at edu.rice.cs.drjava.ui.MainFrame.access$4800(MainFrame.java:116) at edu.rice.cs.drjava.ui.MainFrame$51.actionPerformed(MainFrame.java:822) at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995) at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318) 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.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:272) at java.awt.Component.processMouseEvent(Component.java:6216) at javax.swing.JComponent.processMouseEvent(JComponent.java:3265) at java.awt.Component.processEvent(Component.java:5981) at java.awt.Container.processEvent(Container.java:2041) at java.awt.Component.dispatchEventImpl(Component.java:4583) at java.awt.Container.dispatchEventImpl(Container.java:2099) at java.awt.Component.dispatchEvent(Component.java:4413) at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4556) at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4220) at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4150) at java.awt.Container.dispatchEventImpl(Container.java:2085) at java.awt.Window.dispatchEventImpl(Window.java:2475) at java.awt.Component.dispatchEvent(Component.java:4413) at java.awt.EventQueue.dispatchEvent(EventQueue.java:599) at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269) at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161) at java.awt.EventDispatchThread.run(EventDispatchThread.java:122) System Properties: DrJava Version drjava-20090402-r4864 DrJava Build Time 20090402-0550 drjava.debug.port = 60390 java.runtime.name = Java(TM) SE Runtime Environment sun.boot.library.path = /usr/lib/jvm/java-6-sun-1.6.0.13/jre/lib/amd64 java.vm.version = 11.3-b02 java.vm.vendor = Sun Microsystems Inc. java.vendor.url = http://java.sun.com/ path.separator = : java.vm.name = Java HotSpot(TM) 64-Bit Server 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.home> java.runtime.version = 1.6.0_13-b03 java.awt.graphicsenv = sun.awt.X11GraphicsEnvironment java.endorsed.dirs = /usr/lib/jvm/java-6-sun-1.6.0.13/jre/lib/endorsed os.arch = amd64 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-sun-1.6.0.13/jre/lib/amd64/server:/usr/lib/jvm/java-6-sun-1.6.0.13/jre/lib/amd64:/usr/lib/jvm/java-6-sun-1.6.0.13/jre/../lib/amd64:/usr/java/packages/lib/amd64:/lib:/usr/lib java.specification.name = Java Platform API Specification java.class.version = 50.0 sun.management.compiler = HotSpot 64-Bit Server Compiler os.version = 2.6.28-11-generic user.home = <anonymized user.home> user.timezone = America/North_Dakota/New_Salem java.awt.printerjob = sun.print.PSPrinterJob file.encoding = UTF-8 java.specification.version = 1.6 java.class.path = <anonymized user.home>/hw8/drjava-20090402-r4864.jar user.name = <anonymized user.name> java.vm.specification.version = 1.0 java.home = /usr/lib/jvm/java-6-sun-1.6.0.13/jre sun.arch.data.model = 64 user.language = en java.specification.vendor = Sun Microsystems Inc. java.vm.info = mixed mode java.version = 1.6.0_13 java.ext.dirs = /usr/lib/jvm/java-6-sun-1.6.0.13/jre/lib/ext:/usr/java/packages/lib/ext sun.boot.class.path = /usr/lib/jvm/java-6-sun-1.6.0.13/jre/lib/resources.jar:/usr/lib/jvm/java-6-sun-1.6.0.13/jre/lib/rt.jar:/usr/lib/jvm/java-6-sun-1.6.0.13/jre/lib/sunrsasign.jar:/usr/lib/jvm/java-6-sun-1.6.0.13/jre/lib/jsse.jar:/usr/lib/jvm/java-6-sun-1.6.0.13/jre/lib/jce.jar:/usr/lib/jvm/java-6-sun-1.6.0.13/jre/lib/charsets.jar:/usr/lib/jvm/java-6-sun-1.6.0.13/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 #Fri Apr 10 02:53:42 CDT 2009 javac.location = /usr/lib/jvm/java-6-sun-1.6.0.13/lib/tools.jar key.delete.next = shift DELETE key.delete.previous = shift BACK_SPACE quit.prompt = false interactions.reset.prompt = false save.before.compile = true remote.control.enabled = false language.level = 2 recent.files = [<anonymized user.home>/hw8/qian/dsq1-sak2-hw08/EmptyObjectList.dj1,<anonymized user.home>/hw8/qian/dsq1-sak2-hw08/Predicate.dj1,<anonymized user.home>/hw8/qian/dsq1-sak2-hw08/ObjectList.dj1,<anonymized user.home>/hw8/qian/dsq1-sak2-hw08/ConsObjectList.dj1,<anonymized user.home>/hw8/qian/dsq1-sak2-hw08/TestEmptyObjectList.dj1] window.height = 1045 window.x = 949 window.y = 24 last.dir = <anonymized user.home>/hw8/qian/dsq1-sak2-hw08/ConsObjectList.dj1 last.interactions.dir = <anonymized user.home>/hw8/qian/dsq1-sak2-hw08 tabbedpanes.state = 960 600 700 400 dialog.drjava.survey.enabled = false new.version.notification.last = 1239005729014 drjava.survey.notification.last = 1239006689391 drjava.survey.result.last = http://www.drjava.org/submit-usage.php?rev=4864&os.name=Linux&os.version=2.6.28-11-generic&java.version=1.6.0_13&java.vendor=Sun%20Microsystems%20Inc. Used memory: about 114.20 megabytes Free memory: about 70.61 megabytes Total memory: about 184.81 megabytes Total memory can expand to: about 1.69 gigabytes ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2749994&group_id=44253 |
From: SourceForge.net <no...@so...> - 2009-04-10 05:13:15
|
Bugs item #2749759, was opened at 2009-04-10 00:13 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2749759&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: 7 Private: No Submitted By: Mathias Ricken (mgricken) Assigned to: Dan Smith (dlsmith) Summary: UnmarshalException in "View Interactions Classpath" Initial Comment: DrJava has a "View Interactions Classpath" context menu item if you right-click on the Interactions Pane (also in the menu bar as "Tools/Interactions & Console/View Interactions Classpath"). It displays the class path entries and also updates the detected source roots in flat-file mode. Unfortunately, I just noticed that this feature has been broken. I have verified that it broke in revision 4731 during the major Master/SlaveJVM refactoring in February. java.rmi.UnmarshalException: error unmarshalling return; nested exception is: java.io.WriteAbortedException: writing aborted; java.io.NotSerializableException: edu.rice.cs.drjava.model.repl.newjvm.ClassPathManager$1 at sun.rmi.server.UnicastRef.invoke(Unknown Source) at java.rmi.server.RemoteObjectInvocationHandler.invokeRemoteMethod(Unknown Source) at java.rmi.server.RemoteObjectInvocationHandler.invoke(Unknown Source) at $Proxy0.getClassPath(Unknown Source) at edu.rice.cs.drjava.model.repl.newjvm.MainJVM.getClassPath(MainJVM.java:439) at edu.rice.cs.drjava.model.DefaultGlobalModel.getInteractionsClassPath(DefaultGlobalModel.java:400) at edu.rice.cs.drjava.ui.MainFrame.viewInteractionsClassPath(MainFrame.java:2191) at edu.rice.cs.drjava.ui.MainFrame$102.actionPerformed(MainFrame.java:2186) 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.AbstractButton.doClick(Unknown Source) at javax.swing.plaf.basic.BasicMenuItemUI.doClick(Unknown Source) at javax.swing.plaf.basic.BasicMenuItemUI$Handler.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.io.WriteAbortedException: writing aborted; java.io.NotSerializableException: edu.rice.cs.drjava.model.repl.newjvm.ClassPathManager$1 at java.io.ObjectInputStream.readObject0(Unknown Source) at java.io.ObjectInputStream.defaultReadFields(Unknown Source) at java.io.ObjectInputStream.readSerialData(Unknown Source) at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source) at java.io.ObjectInputStream.readObject0(Unknown Source) at java.io.ObjectInputStream.defaultReadFields(Unknown Source) at java.io.ObjectInputStream.readSerialData(Unknown Source) at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source) at java.io.ObjectInputStream.readObject0(Unknown Source) at java.io.ObjectInputStream.readObject(Unknown Source) at sun.rmi.server.UnicastRef.unmarshalValue(Unknown Source) ... 36 more Caused by: java.io.NotSerializableException: edu.rice.cs.drjava.model.repl.newjvm.ClassPathManager$1 at java.io.ObjectOutputStream.writeObject0(Unknown Source) at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source) at java.io.ObjectOutputStream.writeSerialData(Unknown Source) at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source) at java.io.ObjectOutputStream.writeObject0(Unknown Source) at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source) at java.io.ObjectOutputStream.writeSerialData(Unknown Source) at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source) at java.io.ObjectOutputStream.writeObject0(Unknown Source) at java.io.ObjectOutputStream.writeObject(Unknown Source) at sun.rmi.server.UnicastRef.marshalValue(Unknown Source) at sun.rmi.server.UnicastServerRef.dispatch(Unknown Source) at sun.rmi.transport.Transport$1.run(Unknown Source) at java.security.AccessController.doPrivileged(Native Method) at sun.rmi.transport.Transport.serviceCall(Unknown Source) at sun.rmi.transport.tcp.TCPTransport.handleMessages(Unknown Source) at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(Unknown Source) at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at java.lang.Thread.run(Unknown Source) System Properties: DrJava Version drjava-20090407-r4873 DrJava Build Time 20090407-2208 drjava.debug.port = 4932 java.runtime.name = Java(TM) SE Runtime Environment sun.boot.library.path = C:\jre1.6.0_14\bin java.vm.version = 14.0-b10 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 = US sun.os.patch.level = Service Pack 3 java.vm.specification.name = Java Virtual Machine Specification user.dir = <anonymized user.home>\Desktop java.runtime.version = 1.6.0_14-ea-b01 java.awt.graphicsenv = sun.awt.Win32GraphicsEnvironment java.endorsed.dirs = C:\jre1.6.0_14\lib\endorsed os.arch = x86 java.io.tmpdir = C:\DOCUME~1\<anonymized user.name>\LOCALS~1\Temp\ line.separator = "\u000d\u000a" java.vm.specification.vendor = Sun Microsystems Inc. user.variant = os.name = Windows XP sun.jnu.encoding = Cp1252 java.library.path = C:\jre1.6.0_14\bin;.;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\jre\bin;C:\jdk\bin;C:\Program Files\Tools\Windows Resource Kits\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Dev\Perforce;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:\Program Files\Haskell\bin;C:\ghc-6.10.1\bin;C:\Program Files\Internet\SSH Secure Shell;C:\Scala2.7.1\bin java.specification.name = Java Platform API Specification java.class.version = 50.0 sun.management.compiler = HotSpot Client Compiler os.version = 5.1 user.home = <anonymized user.home> user.timezone = America/Chicago java.awt.printerjob = sun.awt.windows.WPrinterJob file.encoding = Cp1252 java.specification.version = 1.6 java.class.path = <anonymized user.home>\Desktop\drjava.jar user.name = <anonymized user.name> java.vm.specification.version = 1.0 java.home = C:\jre1.6.0_14 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_14-ea java.ext.dirs = C:\jre1.6.0_14\lib\ext;C:\WINDOWS\Sun\Java\lib\ext sun.boot.class.path = C:\jre1.6.0_14\lib\resources.jar;C:\jre1.6.0_14\lib\rt.jar;C:\jre1.6.0_14\lib\sunrsasign.jar;C:\jre1.6.0_14\lib\jsse.jar;C:\jre1.6.0_14\lib\jce.jar;C:\jre1.6.0_14\lib\charsets.jar;C:\jre1.6.0_14\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 #Fri Apr 10 00:11:37 CDT 2009 lineenum.enabled = true key.delete.next = shift DELETE key.delete.previous = shift BACK_SPACE find.replace.match.case = false javadoc.additional.links = [http://drjava.org/javadoc/plt] quit.prompt = false open.folder.recursive = true language.level = 2 recent.files = [<anonymized user.home>\\Documents\\Dev\\Java\\DJ1Class.dj1] recent.projects = [<anonymized user.home>\\Documents\\Dev\\Java\\LLCTest.xml,<anonymized user.home>\\Documents\\drjava\\drjava.xml,<anonymized user.home>\\Documents\\Research\\Mint\\java-mint\\java-mint.xml,R:\\Concutest\\ClassLoader\\ClassLoader.xml,<anonymized user.home>\\Documents\\Web\\<anonymized user.name>.cs\\teaching\\202\\08-fall\\staff\\exams\\2\\2008\\solution\\graph\\graph.xml] window.height = 1555 window.width = 1208 window.x = -4 window.y = -4 window.state = 6 doc.list.width = 261 last.dir = <anonymized user.home>\\Documents\\Dev\\Java last.interactions.dir = <anonymized user.home>\\Documents\\Dev\\Java dialog.clipboard.history.state = 402 400 399 573 dialog.completeword.javaapi = true tabbedpanes.state = 1201 1 1201 642 tabbedpanes.detach = true find.replace.focus.in.defpane = true new.version.notification = weekly experimental builds new.version.notification.last = 1239178410921 drjava.survey.notification.last = 1239338306562 drjava.survey.result.last = http://www.drjava.org/submit-usage.php?rev=4873&os.name=Windows%20XP&os.version=5.1&java.version=1.6.0_14-ea&java.vendor=Sun%20Microsystems%20Inc. Used memory: about 7.71 megabytes Free memory: about 1.63 megabytes Total memory: about 9.34 megabytes Total memory can expand to: about 63.56 megabytes ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2749759&group_id=44253 |
From: SourceForge.net <no...@so...> - 2009-04-08 23:55:02
|
Bugs item #2745803, was opened at 2009-04-08 18:54 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2745803&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: 3: Ugly Status: Open Resolution: None Priority: 5 Private: No Submitted By: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: Undo After Find/Replace Initial Comment: I am using the latest version of DrJava. I was doing some find/replace and then try to undo my changes and obtained an error message. See attached. Zung edu.rice.cs.util.UnexpectedException: java.lang.RuntimeException: Illegal location 8814 at edu.rice.cs.drjava.model.AbstractDJDocument.setCurrentLocation(AbstractDJDocument.java:474) at edu.rice.cs.drjava.model.AbstractDJDocument$UnremoveCommand$1.run(AbstractDJDocument.java:1861) 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) Caused by: java.lang.RuntimeException: Illegal location 8814 at edu.rice.cs.util.UnexpectedException.<init>(UnexpectedException.java:71) ... 10 more Caused by: java.lang.RuntimeException: Illegal location 8814 at edu.rice.cs.util.UnexpectedException.<init>(UnexpectedException.java:71) at edu.rice.cs.drjava.model.AbstractDJDocument.setCurrentLocation(AbstractDJDocument.java:474) at edu.rice.cs.drjava.model.AbstractDJDocument$UnremoveCommand$1.run(AbstractDJDocument.java:1861) 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) System Properties: DrJava Version drjava-20090406-r4872 DrJava Build Time 20090406-2137 drjava.debug.port = 50128 java.runtime.name = Java(TM) SE Runtime Environment sun.boot.library.path = C:\Program Files\Java\jre1.6.0_07\bin java.vm.version = 10.0-b23 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 = Service Pack 1 java.vm.specification.name = Java Virtual Machine Specification user.dir = <anonymized user.home>\Desktop java.runtime.version = 1.6.0_07-b06 java.awt.graphicsenv = sun.awt.Win32GraphicsEnvironment java.endorsed.dirs = C:\Program Files\Java\jre1.6.0_07\lib\endorsed os.arch = x86 java.io.tmpdir = C:\Users\DXNGUY~1.ADR\AppData\Local\Temp\ line.separator = "\u000d\u000a" java.vm.specification.vendor = Sun Microsystems Inc. user.variant = os.name = Windows Vista sun.jnu.encoding = Cp1252 java.library.path = C:\Program Files\Java\jre1.6.0_07\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files\Intel\DMIX;C:\Program Files\Common Files\Roxio Shared\DLLShared\;C:\Program Files\MATLAB\R2008a\bin;C:\Program Files\MATLAB\R2008a\bin\win32;C:\Program Files\Common Files\Aladdin Shared\eToken\PKIClient\x32;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\jZip java.specification.name = Java Platform API Specification java.class.version = 50.0 sun.management.compiler = HotSpot Client Compiler os.version = 6.0 user.home = <anonymized user.home> user.timezone = America/Chicago java.awt.printerjob = sun.awt.windows.WPrinterJob file.encoding = Cp1252 java.specification.version = 1.6 java.class.path = <anonymized user.home>\Desktop\dj090406.jar user.name = <anonymized user.name> java.vm.specification.version = 1.0 java.home = C:\Program Files\Java\jre1.6.0_07 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_07 java.ext.dirs = C:\Program Files\Java\jre1.6.0_07\lib\ext;C:\Windows\Sun\Java\lib\ext sun.boot.class.path = C:\Program Files\Java\jre1.6.0_07\lib\resources.jar;C:\Program Files\Java\jre1.6.0_07\lib\rt.jar;C:\Program Files\Java\jre1.6.0_07\lib\sunrsasign.jar;C:\Program Files\Java\jre1.6.0_07\lib\jsse.jar;C:\Program Files\Java\jre1.6.0_07\lib\jce.jar;C:\Program Files\Java\jre1.6.0_07\lib\charsets.jar;C:\Program Files\Java\jre1.6.0_07\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 Apr 08 18:46:22 CDT 2009 key.delete.next = shift DELETE key.delete.previous = shift BACK_SPACE find.replace.whole.word = true javadoc.access.level = private quit.prompt = false save.before.compile = true open.folder.recursive = true indent.level = 4 recent.files = [C:\\Users\\<anonymized user.name>.ADRICE\\Documents\\My Web Sites\\Rice\\comp212\\dxn\\08-spring\\proj\\games4two\\src\\model\\nextMove\\MinMaxFac.java,C:\\Users\\<anonymized user.name>.ADRICE\\Documents\\My Web Sites\\Rice\\comp212\\dxn\\08-spring\\proj\\games4two\\src\\GameIO\\ICommand.java,C:\\Users\\<anonymized user.name>.ADRICE\\Documents\\My Web Sites\\Rice\\comp212\\dxn\\08-spring\\proj\\games4two\\src\\GameIO\\IRejectCommand.java,C:\\Users\\<anonymized user.name>.ADRICE\\Documents\\My Web Sites\\Rice\\comp212\\dxn\\08-spring\\proj\\games4two\\src\\GameIO\\IViewRequestor.java,C:\\Users\\<anonymized user.name>.ADRICE\\Documents\\My Web Sites\\Rice\\comp212\\dxn\\08-spring\\proj\\games4two\\src\\controller\\GameApp.java] recent.projects = [C:\\Users\\<anonymized user.name>.ADRICE\\Documents\\My Web Sites\\Rice\\comp212\\dxn\\08-spring\\proj\\games4two\\s08GamesSol.xml] window.height = 1077 window.width = 1095 window.x = 787 window.y = 64 doc.list.width = 358 last.dir = C:\\Users\\<anonymized user.name>.ADRICE\\Documents\\My Web Sites\\Rice\\comp211\\09spring\\lectures\\lec33\\src\\OOTreeMapTest.java last.interactions.dir = C:\\Users\\<anonymized user.name>.ADRICE\\Documents\\My Web Sites\\Rice\\comp211\\09spring\\lectures\\lec33 tabbedpanes.state = 960 600 700 400 new.version.notification.last = 1238621591016 drjava.survey.notification.last = 1239060295360 drjava.survey.result.last = http://www.drjava.org/submit-usage.php?rev=4872&os.name=Windows%20Vista&os.version=6.0&java.version=1.6.0_07&java.vendor=Sun%20Microsystems%20Inc. Used memory: about 25.55 megabytes Free memory: about 8.70 megabytes Total memory: about 34.25 megabytes Total memory can expand to: about 63.56 megabytes ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=2745803&group_id=44253 |