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...> - 2011-03-05 19:13:57
|
Bugs item #3200679, was opened at 2011-03-05 14:13 Message generated for change (Tracker Item Submitted) made by baonn You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3200679&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: Bao N. Nguyen (baonn) Assigned to: Nobody/Anonymous (nobody) Summary: Auto-Refresh Project Hang Initial Comment: The application is hang when we click on Auto-Refresh Project My Environment SVN Revision: 5430 OS: Ubuntu 10.10 Java: jdk-6-21 ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3200679&group_id=44253 |
From: SourceForge.net <no...@so...> - 2011-02-11 20:09:12
|
Bugs item #3178576, was opened at 2011-02-11 15:09 Message generated for change (Tracker Item Submitted) made by sp2verdandecom You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3178576&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: Steven Przybylski (sp2verdandecom) Assigned to: Nobody/Anonymous (nobody) Summary: Order of classes in an un-named package matters Initial Comment: The following compiles and runs: public class Program { public static void main(String[] args) { System.out.println("It runs" ); } } class Foo { public double foo1() { return (1.0);} } The following fails with a static error: class Foo { public double foo1() { return (1.0);} } public class Program { public static void main(String[] args) { System.out.println("It runs" ); } } I can't find where in the Java language specification the order of classes in a unnamed package is allowed to make a difference. Thanks ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3178576&group_id=44253 |
From: SourceForge.net <no...@so...> - 2011-02-11 19:55:41
|
Bugs item #3178565, was opened at 2011-02-11 14:55 Message generated for change (Tracker Item Submitted) made by sp2verdandecom You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3178565&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: Steven Przybylski (sp2verdandecom) Assigned to: Nobody/Anonymous (nobody) Summary: Order of classes in an un-named package matters Initial Comment: The following compiles and runs: public class Program { public static void main(String[] args) { System.out.println("It runs" ); } } class Foo { public double foo1() { return (1.0);} } The following fails with a static error: class Foo { public double foo1() { return (1.0);} } public class Program { public static void main(String[] args) { System.out.println("It runs" ); } } I can't find where in the Java language specification the order of classes in a unnamed package is allowed to make a difference. Thanks ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3178565&group_id=44253 |
From: Mathias R. <mgr...@ri...> - 2011-02-05 19:07:23
|
Dear DrJava Users: We have made a new development version available: drjava-20110205-r5425/ You can download it from the DrJava website at http://drjava.org/ or from SourceForge.net by following this link: https://sourceforge.net/projects/drjava/files/2.%20DrJava%20Development%20Releases/drjava-20110205-r5425/ 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 development release includes a number of new features introduced after the last stable release: The language level facility has been changed to consist of two language levels, Functional Java (corresponding to the old Intermediate level) and Full Java. The old files can still be compiled, but DrJava will ask if it should rename .dj0 and .dj1 to .dj and .dj2 files to .java. DrJava's compiler support has been improved, and DrJava now supports compiling files with file extensions other than .java, .dj, .dj0, .dj1, and .dj2. This includes support for Habanero Java .hj files, provided the Habanero Java compiler is installed. DrJava preferences like indent level can now be stored on a per- project basis (see "Project Properties", "Advanced"). Note: Java 1.4 compatibility has been dropped. To use DrJava, you will need Java 5 or newer. New features since the last stable release: - refactored language levels - improved compiler support, including support for Habanero Java - The contents of the Compiler Errors pane can now be copied to the clipboard. - DrJava preferences like indent level can now be stored on a per-project basis (see "Project Properties", "Advanced"). Bug fixes since last stable release: - Applet viewer not started in event thread anymore to avoid exception - Static type checking for primitive casts in Interactions pane |
From: SourceForge.net <no...@so...> - 2011-02-02 22:13:32
|
Bugs item #3170959, was opened at 2011-02-02 17:13 Message generated for change (Tracker Item Submitted) made by kasambu You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3170959&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: kasambu junior (kasambu) Assigned to: Nobody/Anonymous (nobody) Summary: cannot run program Initial Comment: i could not run any java program code. im using the latest dr java and jdk. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3170959&group_id=44253 |
From: SourceForge.net <no...@so...> - 2011-02-02 21:27:43
|
Bugs item #3170930, was opened at 2011-02-02 15: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=3170930&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: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: Internal Program Error: Can't find method data for Word: Initial Comment: This program, saved as IntOps.dj (functional Java language level), blows up in the compiler: public class IntOps { public static void main(String[] args) { int a = Integer.parseInt(args[0]); int b = Integer.parseInt(args[1]); int sum = a + b; int prod = a * b; int quot = a / b; int rem = a % b; System.out.println(a + " + " + b + " = " + sum); System.out.println(a + " * " + b + " = " + prod); System.out.println(a + " / " + b + " = " + quot); System.out.println(a + " % " + b + " = " + rem); System.out.println(a + "=" + quot + " * " + b + " + " + rem); } } The exception is edu.rice.cs.util.UnexpectedException: java.lang.RuntimeException: Internal Program Error: Can't find method data for Word: sourceInfo = [IntOps.dj: (2,24)-(2,27)] text = main Please report this bug. 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(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.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.lang.RuntimeException: Internal Program Error: Can't find method data for Word: sourceInfo = [IntOps.dj: (2,24)-(2,27)] text = main Please report this bug. at edu.rice.cs.javalanglevels.Augmentor.forConcreteMethodDef(Augmentor.java:221) at edu.rice.cs.javalanglevels.Augmentor.forConcreteMethodDef(Augmentor.java:51) at edu.rice.cs.javalanglevels.tree.ConcreteMethodDef.visit(ConcreteMethodDef.java:28) at edu.rice.cs.javalanglevels.tree.JExpressionIFDepthFirstVisitor.forBracedBody(JExpressionIFDepthFirstVisitor.java:1553) at edu.rice.cs.javalanglevels.tree.BracedBody.visit(BracedBody.java:21) at edu.rice.cs.javalanglevels.Augmentor.forClassDef(Augmentor.java:260) at edu.rice.cs.javalanglevels.Augmentor.forClassDef(Augmentor.java:51) at edu.rice.cs.javalanglevels.tree.ClassDef.visit(ClassDef.java:28) at edu.rice.cs.javalanglevels.Augmentor.forSourceFile(Augmentor.java:471) at edu.rice.cs.javalanglevels.Augmentor.forSourceFile(Augmentor.java:51) at edu.rice.cs.javalanglevels.tree.SourceFile.visit(SourceFile.java:42) at edu.rice.cs.javalanglevels.LanguageLevelConverter.convert(LanguageLevelConverter.java:382) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel._compileLanguageLevelsFiles(DefaultCompilerModel.java:550) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel._compileFiles(DefaultCompilerModel.java:343) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel._doCompile(DefaultCompilerModel.java:271) ... 29 more Caused by: java.lang.RuntimeException: Internal Program Error: Can't find method data for Word: sourceInfo = [IntOps.dj: (2,24)-(2,27)] text = main Please report this bug. at edu.rice.cs.javalanglevels.Augmentor.forConcreteMethodDef(Augmentor.java:221) at edu.rice.cs.javalanglevels.Augmentor.forConcreteMethodDef(Augmentor.java:51) at edu.rice.cs.javalanglevels.tree.ConcreteMethodDef.visit(ConcreteMethodDef.java:28) at edu.rice.cs.javalanglevels.tree.JExpressionIFDepthFirstVisitor.forBracedBody(JExpressionIFDepthFirstVisitor.java:1553) at edu.rice.cs.javalanglevels.tree.BracedBody.visit(BracedBody.java:21) at edu.rice.cs.javalanglevels.Augmentor.forClassDef(Augmentor.java:260) at edu.rice.cs.javalanglevels.Augmentor.forClassDef(Augmentor.java:51) at edu.rice.cs.javalanglevels.tree.ClassDef.visit(ClassDef.java:28) at edu.rice.cs.javalanglevels.Augmentor.forSourceFile(Augmentor.java:471) at edu.rice.cs.javalanglevels.Augmentor.forSourceFile(Augmentor.java:51) at edu.rice.cs.javalanglevels.tree.SourceFile.visit(SourceFile.java:42) at edu.rice.cs.javalanglevels.LanguageLevelConverter.convert(LanguageLevelConverter.java:382) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel._compileLanguageLevelsFiles(DefaultCompilerModel.java:550) at edu.rice.cs.drjava.model.compiler.DefaultCompilerModel._compileFiles(DefaultCompilerModel.java:343) 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(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.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-20100913-r5387 DrJava Build Time 20100913-2126 drjava.debug.port = 60644 java.runtime.name = Java(TM) SE Runtime Environment sun.boot.library.path = C:\Program Files (x86)\Java\jre6\bin java.vm.version = 14.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.home>\Downloads java.runtime.version = 1.6.0_17-b04 java.awt.graphicsenv = sun.awt.Win32GraphicsEnvironment java.endorsed.dirs = C:\Program Files (x86)\Java\jre6\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 7 sun.jnu.encoding = Cp1252 java.library.path = C:\Program Files (x86)\Java\jre6\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Windows Imaging\;C:\Program Files (x86)\QuickTime\QTSystem\;C:\Program Files (x86)\Quest Software\PuTTY\;C:\Program Files (x86)\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/Los_Angeles java.awt.printerjob = sun.awt.windows.WPrinterJob file.encoding = Cp1252 java.specification.version = 1.6 java.class.path = <anonymized user.home>\Downloads\drjava-stable-20100913-r5387.exe user.name = <anonymized user.name> java.vm.specification.version = 1.0 java.home = C:\Program Files (x86)\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_17 java.ext.dirs = C:\Program Files (x86)\Java\jre6\lib\ext;C:\Windows\Sun\Java\lib\ext sun.boot.class.path = C:\Program Files (x86)\Java\jre6\lib\resources.jar;C:\Program Files (x86)\Java\jre6\lib\rt.jar;C:\Program Files (x86)\Java\jre6\lib\sunrsasign.jar;C:\Program Files (x86)\Java\jre6\lib\jsse.jar;C:\Program Files (x86)\Java\jre6\lib\jce.jar;C:\Program Files (x86)\Java\jre6\lib\charsets.jar;C:\Program Files (x86)\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 In resource bundle edu.rice.cs.drjava.config.options: nothing In shadowed configuration: key.delete.next = [shift DELETE] key.delete.previous = [shift BACK_SPACE] language.level = 4 recent.files = [C:\\Users\\<anonymized user.name>\\Documents\\Java\\HelloWorld.java] window.x = 320 window.y = 100 last.dir = C:\\Users\\<anonymized user.name>\\Documents\\Java\\IntOps.dj last.interactions.dir = C:\\Users\\<anonymized user.name>\\Documents\\Java tabbedpanes.state = 720 450 700 400 new.version.notification.last = 1296251713281 drjava.survey.notification.last = 1296601912671 drjava.survey.result.last = http://www.drjava.org/submit-usage.php?rev=5387&os.name=Windows%207&os.version=6.1&java.version=1.6.0_17&java.vendor=Sun%20Microsystems%20Inc. file.ext.registration = never Used memory: about 17.04 megabytes Free memory: about 8.97 megabytes Total memory: about 26.00 megabytes Total memory can expand to: about 63.56 megabytes Number of processors/cores: 4 Compiler Discovery Log: >From config: not set makeFromRuntime: compilerAdapter=edu.rice.cs.drjava.model.compiler.Javac160Compiler attempt = JDK 6.0_17, 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: C:\Program Files (x86)\Java\jre6 Dir added: C:\Program Files (x86)\Java Dir added: C:\Program Files (x86) Dir added: C:\Program Files (x86)\Java Dir added: C:\Program Files (x86) Dir not added: C:\Program Files\Java Dir added: C:\Program Files Dir not added: C:\Java Dir added: <anonymized user.home>\Downloads Dir not added: C:\Java Dir added: <anonymized user.home>\Downloads Dir not added: C:\System\Library\Frameworks\JavaVM.framework\Versions Dir not added: C:\usr\java Dir not added: C:\usr\j2se Dir not added: C:\usr Dir not added: C:\usr\local\java Dir not added: C:\usr\local\j2se Dir not added: C:\usr\local Dir not added: C:\usr\lib\jvm Dir not added: C:\usr\lib\jvm\java-6-sun Dir not added: C:\usr\lib\jvm\java-1.5.0-sun Dir not added: C:\usr\lib\jvm\java-6-openjdk Dir not added: C:\home\javaplt\java\Linux-i686 File not added: C:\Program Files (x86)\Java\lib\tools.jar File not added: C:\Program Files (x86)\Java\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: C:\usr\local\soylatte\lib\classes.jar File not added: C:\usr\local\soylatte\lib\tools.jar File not added: C:\usr\local\JavaMint\langtools\dist\lib\classes.jar File not added: C:\usr\local\JavaMint\langtools\dist\lib\tools.jar MINT_HOME not set File added: <anonymized user.home>\Downloads\drjava-stable-20100913-r5387.exe Result: ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3170930&group_id=44253 |
From: SourceForge.net <no...@so...> - 2011-01-04 02:38:29
|
Feature Requests item #3150793, was opened at 2011-01-03 20:38 Message generated for change (Tracker Item Submitted) made by alphachap You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438938&aid=3150793&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 Priority: 5 Private: No Submitted By: pierre charland (alphachap) Assigned to: Nobody/Anonymous (nobody) Summary: auto format Initial Comment: Is there a way to somewhat autoformat the code? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438938&aid=3150793&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-12-27 19:41:35
|
Bugs item #3146506, was opened at 2010-12-27 14:41 Message generated for change (Tracker Item Submitted) made by ericklozano You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3146506&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: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Erick Lozano (ericklozano) Assigned to: Nobody/Anonymous (nobody) Summary: the program won't open Initial Comment: java.lang.InternalError: Could not bind shell folder to interface at sun.awt.shell.Win32ShellFolder2.initSpecial(Native Method) at sun.awt.shell.Win32ShellFolder2.access$200(Unknown Source) at sun.awt.shell.Win32ShellFolder2$1.call(Unknown Source) at sun.awt.shell.Win32ShellFolder2$1.call(Unknown Source) at sun.awt.shell.Win32ShellFolderManager2$ComInvoker.invoke(Unknown Source) at sun.awt.shell.ShellFolder.invoke(Unknown Source) at sun.awt.shell.ShellFolder.invoke(Unknown Source) at sun.awt.shell.Win32ShellFolder2.<init>(Unknown Source) at sun.awt.shell.Win32ShellFolderManager2.getNetwork(Unknown Source) at sun.awt.shell.Win32ShellFolder2$7.call(Unknown Source) at sun.awt.shell.Win32ShellFolder2$7.call(Unknown Source) at sun.awt.shell.Win32ShellFolderManager2$ComInvoker.invoke(Unknown Source) at sun.awt.shell.ShellFolder.invoke(Unknown Source) at sun.awt.shell.ShellFolder.invoke(Unknown Source) at sun.awt.shell.Win32ShellFolder2.getFileSystemPath(Unknown Source) at sun.awt.shell.Win32ShellFolder2.access$300(Unknown Source) at sun.awt.shell.Win32ShellFolder2$2.call(Unknown Source) at sun.awt.shell.Win32ShellFolder2$2.call(Unknown Source) at sun.awt.shell.Win32ShellFolderManager2$ComInvoker.invoke(Unknown Source) at sun.awt.shell.ShellFolder.invoke(Unknown Source) at sun.awt.shell.ShellFolder.invoke(Unknown Source) at sun.awt.shell.Win32ShellFolder2.<init>(Unknown Source) at sun.awt.shell.Win32ShellFolder2$10.call(Unknown Source) at sun.awt.shell.Win32ShellFolder2$10.call(Unknown Source) at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source) at java.util.concurrent.FutureTask.run(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at sun.awt.shell.Win32ShellFolderManager2$ComInvoker$3.run(Unknown Source) at java.lang.Thread.run(Unknown Source) System Properties: DrJava Version drjava-20100913-r5387 DrJava Build Time 20100913-2126 java.runtime.name = Java(TM) SE Runtime Environment sun.boot.library.path = C:\Program Files (x86)\Java\jre6\bin java.vm.version = 19.0-b09 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 2 java.vm.specification.name = Java Virtual Machine Specification user.dir = <anonymized user.home>\Desktop java.runtime.version = 1.6.0_23-b05 java.awt.graphicsenv = sun.awt.Win32GraphicsEnvironment java.endorsed.dirs = C:\Program Files (x86)\Java\jre6\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 = C:\Program Files (x86)\Java\jre6\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;;C:\Program Files\Java\jdk1.6.0_21\bin;”;C:\Program Files (x86)\QuickTime\QTSystem\;C:\Program Files (x86)\Java\jre6\bin 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/New_York java.awt.printerjob = sun.awt.windows.WPrinterJob file.encoding = Cp1252 java.specification.version = 1.6 java.class.path = <anonymized user.home>\Desktop\DRJAVA.exe user.name = <anonymized user.name> java.vm.specification.version = 1.0 java.home = C:\Program Files (x86)\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_23 java.ext.dirs = C:\Program Files (x86)\Java\jre6\lib\ext;C:\Windows\Sun\Java\lib\ext sun.boot.class.path = C:\Program Files (x86)\Java\jre6\lib\resources.jar;C:\Program Files (x86)\Java\jre6\lib\rt.jar;C:\Program Files (x86)\Java\jre6\lib\sunrsasign.jar;C:\Program Files (x86)\Java\jre6\lib\jsse.jar;C:\Program Files (x86)\Java\jre6\lib\jce.jar;C:\Program Files (x86)\Java\jre6\lib\charsets.jar;C:\Program Files (x86)\Java\jre6\lib\modules\jdk.boot.jar;C:\Program Files (x86)\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 sun.desktop = windows sun.cpu.isalist = DrJava configuration file In resource bundle edu.rice.cs.drjava.config.options: nothing In shadowed configuration: extra.classpath = C:\\Users\\<anonymized user.name>\\Desktop\\bookClasses lineenum.enabled = true key.delete.next = [shift DELETE] key.delete.previous = [shift BACK_SPACE] find.replace.whole.word = true interactions.exit.prompt = false quit.prompt = false interactions.reset.prompt = false save.before.compile = true default.compiler.preference = JDK 6.0_21 recent.files = [G:\\Bronx Science\\MCS1\\Java\\Edited bookClasses Files\\Picture.java,C:\\Users\\<anonymized user.name>\\Downloads\\Picture.java,G:\\Bronx Science\\MCS1\\Java\\Interface for Project #5\\Interface Classes\\RectStringECPanel.java,G:\\Bronx Science\\MCS1\\Java\\Interface for Project #5\\Interface Classes\\RectStringECGUI.java] window.height = 886 window.width = 1616 window.x = -8 window.y = -8 window.state = 6 doc.list.width = 170 last.dir = G:\\Bronx Science\\MCS1\\Java\\Edited bookClasses Files\\Picture.java last.interactions.dir = G:\\Bronx Science\\MCS1\\Java\\Edited bookClasses Files tabbedpanes.state = 800 450 700 400 new.version.notification.last = 1291951943694 drjava.survey.notification.last = 1286638956073 drjava.survey.result.last = http://www.drjava.org/submit-usage.php?rev=5387&os.name=Windows%20Vista&os.version=6.0&java.version=1.6.0_21&java.vendor=Sun%20Microsystems%20Inc. file.ext.registration = always Used memory: about 2.04 megabytes Free memory: about 13.46 megabytes Total memory: about 15.50 megabytes Total memory can expand to: about 247.50 megabytes Number of processors/cores: 2 Compiler Discovery Log: ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3146506&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-12-20 15:58:41
|
Bugs item #3140852, was opened at 2010-12-20 09:58 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3140852&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: Open Folder tries to open "null" Initial Comment: Sometimes, an "Open Folder" operation tries to open a folder that is "null". The status message is "Opening folder null" and nothing happens. Something goes wrong in MainFrame.java in public void openFolder(DirectoryChooser chooser) { ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3140852&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-12-18 02:07:38
|
Bugs item #3139448, was opened at 2010-12-17 21:07 Message generated for change (Tracker Item Submitted) made by ericklozano You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3139448&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: 4: Serious Status: Open Resolution: None Priority: 5 Private: Yes Submitted By: Erick Lozano (ericklozano) Assigned to: Nobody/Anonymous (nobody) Summary: DrJava will no open Initial Comment: I tried to open DrJava but it wont open at all and it keeps showing this error java.lang.InternalError: Could not bind shell folder to interface at sun.awt.shell.Win32ShellFolder2.initSpecial(Native Method) at sun.awt.shell.Win32ShellFolder2.access$200(Unknown Source) at sun.awt.shell.Win32ShellFolder2$1.call(Unknown Source) at sun.awt.shell.Win32ShellFolder2$1.call(Unknown Source) at sun.awt.shell.Win32ShellFolderManager2$ComInvoker.invoke(Unknown Source) at sun.awt.shell.ShellFolder.invoke(Unknown Source) at sun.awt.shell.ShellFolder.invoke(Unknown Source) at sun.awt.shell.Win32ShellFolder2.<init>(Unknown Source) at sun.awt.shell.Win32ShellFolderManager2.getNetwork(Unknown Source) at sun.awt.shell.Win32ShellFolder2$7.call(Unknown Source) at sun.awt.shell.Win32ShellFolder2$7.call(Unknown Source) at sun.awt.shell.Win32ShellFolderManager2$ComInvoker.invoke(Unknown Source) at sun.awt.shell.ShellFolder.invoke(Unknown Source) at sun.awt.shell.ShellFolder.invoke(Unknown Source) at sun.awt.shell.Win32ShellFolder2.getFileSystemPath(Unknown Source) at sun.awt.shell.Win32ShellFolder2.access$300(Unknown Source) at sun.awt.shell.Win32ShellFolder2$2.call(Unknown Source) at sun.awt.shell.Win32ShellFolder2$2.call(Unknown Source) at sun.awt.shell.Win32ShellFolderManager2$ComInvoker.invoke(Unknown Source) at sun.awt.shell.ShellFolder.invoke(Unknown Source) at sun.awt.shell.ShellFolder.invoke(Unknown Source) at sun.awt.shell.Win32ShellFolder2.<init>(Unknown Source) at sun.awt.shell.Win32ShellFolder2$10.call(Unknown Source) at sun.awt.shell.Win32ShellFolder2$10.call(Unknown Source) at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source) at java.util.concurrent.FutureTask.run(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at sun.awt.shell.Win32ShellFolderManager2$ComInvoker$3.run(Unknown Source) at java.lang.Thread.run(Unknown Source) System Properties: DrJava Version drjava-20100913-r5387 DrJava Build Time 20100913-2126 java.runtime.name = Java(TM) SE Runtime Environment sun.boot.library.path = C:\Program Files (x86)\Java\jre6\bin java.vm.version = 19.0-b09 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 2 java.vm.specification.name = Java Virtual Machine Specification user.dir = <anonymized user.home>\Downloads java.runtime.version = 1.6.0_23-b05 java.awt.graphicsenv = sun.awt.Win32GraphicsEnvironment java.endorsed.dirs = C:\Program Files (x86)\Java\jre6\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 = C:\Program Files (x86)\Java\jre6\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Program Files (x86)\Mozilla Firefox;;C:\Program Files\Java\jdk1.6.0_21\bin;”;C:\Program Files (x86)\QuickTime\QTSystem\;C:\Program Files (x86)\Java\jre6\bin 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/New_York java.awt.printerjob = sun.awt.windows.WPrinterJob file.encoding = Cp1252 java.specification.version = 1.6 java.class.path = <anonymized user.home>\Downloads\drjava-stable-20100913-r5387.exe user.name = <anonymized user.name> java.vm.specification.version = 1.0 java.home = C:\Program Files (x86)\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_23 java.ext.dirs = C:\Program Files (x86)\Java\jre6\lib\ext;C:\Windows\Sun\Java\lib\ext sun.boot.class.path = C:\Program Files (x86)\Java\jre6\lib\resources.jar;C:\Program Files (x86)\Java\jre6\lib\rt.jar;C:\Program Files (x86)\Java\jre6\lib\sunrsasign.jar;C:\Program Files (x86)\Java\jre6\lib\jsse.jar;C:\Program Files (x86)\Java\jre6\lib\jce.jar;C:\Program Files (x86)\Java\jre6\lib\charsets.jar;C:\Program Files (x86)\Java\jre6\lib\modules\jdk.boot.jar;C:\Program Files (x86)\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 sun.desktop = windows sun.cpu.isalist = DrJava configuration file In resource bundle edu.rice.cs.drjava.config.options: nothing In shadowed configuration: extra.classpath = C:\\Users\\<anonymized user.name>\\Desktop\\bookClasses lineenum.enabled = true key.delete.next = [shift DELETE] key.delete.previous = [shift BACK_SPACE] find.replace.whole.word = true interactions.exit.prompt = false quit.prompt = false interactions.reset.prompt = false save.before.compile = true default.compiler.preference = JDK 6.0_21 recent.files = [G:\\Bronx Science\\MCS1\\Java\\Edited bookClasses Files\\Picture.java,C:\\Users\\<anonymized user.name>\\Downloads\\Picture.java,G:\\Bronx Science\\MCS1\\Java\\Interface for Project #5\\Interface Classes\\RectStringECPanel.java,G:\\Bronx Science\\MCS1\\Java\\Interface for Project #5\\Interface Classes\\RectStringECGUI.java] window.height = 886 window.width = 1616 window.x = -8 window.y = -8 window.state = 6 doc.list.width = 170 last.dir = G:\\Bronx Science\\MCS1\\Java\\Edited bookClasses Files\\Picture.java last.interactions.dir = G:\\Bronx Science\\MCS1\\Java\\Edited bookClasses Files tabbedpanes.state = 800 450 700 400 new.version.notification.last = 1291951943694 drjava.survey.notification.last = 1286638956073 drjava.survey.result.last = http://www.drjava.org/submit-usage.php?rev=5387&os.name=Windows%20Vista&os.version=6.0&java.version=1.6.0_21&java.vendor=Sun%20Microsystems%20Inc. file.ext.registration = always Used memory: about 2.27 megabytes Free memory: about 13.23 megabytes Total memory: about 15.50 megabytes Total memory can expand to: about 247.50 megabytes Number of processors/cores: 2 Compiler Discovery Log: ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3139448&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-12-18 02:05:05
|
Bugs item #3139447, was opened at 2010-12-17 21:05 Message generated for change (Tracker Item Submitted) made by ericklozano You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3139447&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: 1: Would be nice if fixed ... Status: Open Resolution: None Priority: 5 Private: No Submitted By: Erick Lozano (ericklozano) Assigned to: Nobody/Anonymous (nobody) Summary: DrJava does not open at all Initial Comment: When i tried to open Dr Java, the error just poped up but i do not know why and Dr Java wont open. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3139447&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-11-29 00:24:55
|
Bugs item #3121885, was opened at 2010-11-28 18: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=3121885&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: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: Static Error in GridWorldCode_DrJava Initial Comment: Filed on behalf of Orhan Deniz: Im sorry to approach you this way but I had a problem with a piece of software you wrote for DrJava namely \"GridWorldCode_DrJava\" and then the notes part. Where you give two options to solve a problen with unchecked warning. I have tried both of them but with both it gives the warning \"Static Error: This class does not have a static void main method accepting String[].\" As you can see in the attachment. What might be the problem? sincerely yours Orhan Deniz ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3121885&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-11-23 05:21:18
|
Bugs item #3116238, was opened at 2010-11-23 10:51 Message generated for change (Tracker Item Submitted) made by dileepakv You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3116238&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: 1: Would be nice if fixed ... Status: Open Resolution: None Priority: 5 Private: No Submitted By: dileepa kv (dileepakv) Assigned to: Nobody/Anonymous (nobody) Summary: (int) (true) command pops error Initial Comment: edu.rice.cs.util.UnexpectedException: java.lang.IllegalArgumentException at edu.rice.cs.drjava.model.repl.newjvm.MainJVM$ResultHandler.forUnexpectedException(MainJVM.java:1044) at edu.rice.cs.drjava.model.repl.newjvm.MainJVM$ResultHandler.forUnexpectedException(MainJVM.java:991) at edu.rice.cs.drjava.model.repl.newjvm.InterpretResult$UnexpectedExceptionResult.apply(InterpretResult.java:111) at edu.rice.cs.drjava.model.repl.newjvm.MainJVM.interpret(MainJVM.java:352) at edu.rice.cs.drjava.model.repl.RMIInteractionsModel._interpret(RMIInteractionsModel.java:75) at edu.rice.cs.drjava.model.repl.InteractionsModel.interpret(InteractionsModel.java:291) at edu.rice.cs.drjava.model.repl.InteractionsModel$2$1.run(InteractionsModel.java:241) at java.lang.Thread.run(Unknown Source) Caused by: java.lang.IllegalArgumentException at edu.rice.cs.dynamicjava.interpreter.ExpressionEvaluator.convert(ExpressionEvaluator.java:500) at edu.rice.cs.dynamicjava.interpreter.ExpressionEvaluator.value(ExpressionEvaluator.java:39) at edu.rice.cs.dynamicjava.interpreter.ExpressionEvaluator.visit(ExpressionEvaluator.java:353) at koala.dynamicjava.tree.CastExpression.acceptVisitor(CastExpression.java:94) at edu.rice.cs.dynamicjava.interpreter.ExpressionEvaluator.value(ExpressionEvaluator.java:38) at edu.rice.cs.dynamicjava.interpreter.StatementEvaluator.visit(StatementEvaluator.java:106) at edu.rice.cs.dynamicjava.interpreter.StatementEvaluator.visit(StatementEvaluator.java:29) at koala.dynamicjava.tree.ExpressionStatement.acceptVisitor(ExpressionStatement.java:101) at edu.rice.cs.dynamicjava.interpreter.StatementEvaluator.evaluateSequence(StatementEvaluator.java:66) at edu.rice.cs.dynamicjava.interpreter.Interpreter.evaluate(Interpreter.java:77) at edu.rice.cs.dynamicjava.interpreter.Interpreter.interpret(Interpreter.java:47) at edu.rice.cs.drjava.model.repl.newjvm.InterpreterJVM.interpret(InterpreterJVM.java:211) at edu.rice.cs.drjava.model.repl.newjvm.InterpreterJVM.interpret(InterpreterJVM.java:185) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(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) ... 1 more Caused by: java.lang.IllegalArgumentException at edu.rice.cs.dynamicjava.interpreter.ExpressionEvaluator.convert(ExpressionEvaluator.java:500) at edu.rice.cs.dynamicjava.interpreter.ExpressionEvaluator.value(ExpressionEvaluator.java:39) at edu.rice.cs.dynamicjava.interpreter.ExpressionEvaluator.visit(ExpressionEvaluator.java:353) at koala.dynamicjava.tree.CastExpression.acceptVisitor(CastExpression.java:94) at edu.rice.cs.dynamicjava.interpreter.ExpressionEvaluator.value(ExpressionEvaluator.java:38) at edu.rice.cs.dynamicjava.interpreter.StatementEvaluator.visit(StatementEvaluator.java:106) at edu.rice.cs.dynamicjava.interpreter.StatementEvaluator.visit(StatementEvaluator.java:29) at koala.dynamicjava.tree.ExpressionStatement.acceptVisitor(ExpressionStatement.java:101) at edu.rice.cs.dynamicjava.interpreter.StatementEvaluator.evaluateSequence(StatementEvaluator.java:66) at edu.rice.cs.dynamicjava.interpreter.Interpreter.evaluate(Interpreter.java:77) at edu.rice.cs.dynamicjava.interpreter.Interpreter.interpret(Interpreter.java:47) at edu.rice.cs.drjava.model.repl.newjvm.InterpreterJVM.interpret(InterpreterJVM.java:211) at edu.rice.cs.drjava.model.repl.newjvm.InterpreterJVM.interpret(InterpreterJVM.java:185) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(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-20100913-r5387 DrJava Build Time 20100913-2126 drjava.debug.port = 50539 java.runtime.name = Java(TM) SE Runtime Environment sun.boot.library.path = C:\Program Files\Java\jre6\bin java.vm.version = 17.1-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 = IN sun.os.patch.level = Service Pack 2 java.vm.specification.name = Java Virtual Machine Specification user.dir = <anonymized user.home>\Desktop java.runtime.version = 1.6.0_22-b04 java.awt.graphicsenv = sun.awt.Win32GraphicsEnvironment java.endorsed.dirs = C:\Program Files\Java\jre6\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 = C:\Program Files\Java\jre6\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Program Files\PC Connectivity Solution\;C:\otherPrograms\Perl\site\bin;C:\otherPrograms\Perl\bin;C:\Program Files\java\JavaFX\javafx-sdk1.2\bin;C:\Program Files\java\JavaFX\javafx-sdk1.2\emulator\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files\CyberLink\Power2Go;C:\otherPrograms\flex_sdk_3\bin;C:\otherPrograms\MinGW\bin;C:\otherPrograms\msys\1.0\bin;C:\Program Files\Notepad++;C:\Users\All_Users\AppData\Local\Google\Chrome\Application;C:\Program Files\QuickTime\QTSystem\;C:\otherPrograms\DSpeech;C:\Program Files\Java\jdk1.6.0_14\bin;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Broadcom\Broadcom 802.11\Driver;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.0 user.home = <anonymized user.home> user.timezone = Asia/Calcutta java.awt.printerjob = sun.awt.windows.WPrinterJob file.encoding = Cp1252 java.specification.version = 1.6 java.class.path = <anonymized user.home>\Desktop\drjava-stable-20100913-r5387.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_22 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 In resource bundle edu.rice.cs.drjava.config.options: nothing In shadowed configuration: key.reset.interactions = [ctrl M] key.delete.next = [shift DELETE] key.delete.previous = [shift BACK_SPACE] key.bookmarks.toggle = quit.prompt = false interactions.reset.prompt = false save.before.compile = true recent.files = [C:\\Users\\<anonymized user.name>\\Desktop\\javaTut\\Hello.java] window.height = 780 window.width = 1288 window.x = -4 window.y = -4 window.state = 6 last.dir = C:\\Users\\<anonymized user.name>\\Desktop\\javaTut last.interactions.dir = C:\\Users\\<anonymized user.name>\\Desktop\\javaTut tabbedpanes.state = 640 400 700 400 new.version.notification.last = 1290447817741 drjava.survey.notification.last = 1290489038968 drjava.survey.result.last = http://www.drjava.org/submit-usage.php?rev=5387&os.name=Windows%20Vista&os.version=6.0&java.version=1.6.0_22&java.vendor=Sun%20Microsystems%20Inc. file.ext.registration = always Used memory: about 35.49 megabytes Free memory: about 2.42 megabytes Total memory: about 37.91 megabytes Total memory can expand to: about 247.50 megabytes 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_22, 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: C:\Program Files\Java\jre6 Dir added: C:\Program Files\Java Dir added: C:\Program Files Dir added: C:\Program Files\Java Dir added: C:\Program Files Dir added: C:\Program Files\Java Dir added: C:\Program Files Dir not added: C:\Java Dir added: <anonymized user.home>\Desktop Dir not added: C:\Java Dir added: <anonymized user.home>\Desktop Dir not added: C:\System\Library\Frameworks\JavaVM.framework\Versions Dir not added: C:\usr\java Dir not added: C:\usr\j2se Dir not added: C:\usr Dir not added: C:\usr\local\java Dir not added: C:\usr\local\j2se Dir not added: C:\usr\local Dir not added: C:\usr\lib\jvm Dir not added: C:\usr\lib\jvm\java-6-sun Dir not added: C:\usr\lib\jvm\java-1.5.0-sun Dir not added: C:\usr\lib\jvm\java-6-openjdk Dir not added: C:\home\javaplt\java\Linux-i686 File not added: C:\Program Files\Java\JavaFX\lib\tools.jar File not added: C:\Program Files\Java\JavaFX\Classes\classes.jar File added: C:\Program Files\Java\jdk1.6.0_14\lib\tools.jar File not added: C:\Program Files\Java\jdk1.6.0_14\Classes\classes.jar File not added: C:\Program Files\Java\lib\tools.jar File not added: C:\Program Files\Java\Classes\classes.jar File not added: <anonymized user.home>\Desktop\javaTut\lib\tools.jar File not added: <anonymized user.home>\Desktop\javaTut\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: C:\usr\local\soylatte\lib\classes.jar File not added: C:\usr\local\soylatte\lib\tools.jar File not added: C:\usr\local\JavaMint\langtools\dist\lib\classes.jar File not added: C:\usr\local\JavaMint\langtools\dist\lib\tools.jar MINT_HOME not set File added: <anonymized user.home>\Desktop\drjava-stable-20100913-r5387.exe Result: Found library: JDK library 6.0_14 at C:\Program Files\Java\jdk1.6.0_14\lib\tools.jar, boot classpath: [C:\Program Files\Java\jdk1.6.0_14\jre\lib\alt-rt.jar, C:\Program Files\Java\jdk1.6.0_14\jre\lib\charsets.jar, C:\Program Files\Java\jdk1.6.0_14\jre\lib\deploy.jar, C:\Program Files\Java\jdk1.6.0_14\jre\lib\javaws.jar, C:\Program Files\Java\jdk1.6.0_14\jre\lib\jce.jar, C:\Program Files\Java\jdk1.6.0_14\jre\lib\jsse.jar, C:\Program Files\Java\jdk1.6.0_14\jre\lib\management-agent.jar, C:\Program Files\Java\jdk1.6.0_14\jre\lib\plugin.jar, C:\Program Files\Java\jdk1.6.0_14\jre\lib\resources.jar, C:\Program Files\Java\jdk1.6.0_14\jre\lib\rt.jar] >From search: JDK library 6.0_14 at C:\Program Files\Java\jdk1.6.0_14\lib\tools.jar, boot classpath: [C:\Program Files\Java\jdk1.6.0_14\jre\lib\alt-rt.jar, C:\Program Files\Java\jdk1.6.0_14\jre\lib\charsets.jar, C:\Program Files\Java\jdk1.6.0_14\jre\lib\deploy.jar, C:\Program Files\Java\jdk1.6.0_14\jre\lib\javaws.jar, C:\Program Files\Java\jdk1.6.0_14\jre\lib\jce.jar, C:\Program Files\Java\jdk1.6.0_14\jre\lib\jsse.jar, C:\Program Files\Java\jdk1.6.0_14\jre\lib\management-agent.jar, C:\Program Files\Java\jdk1.6.0_14\jre\lib\plugin.jar, C:\Program Files\Java\jdk1.6.0_14\jre\lib\resources.jar, C:\Program Files\Java\jdk1.6.0_14\jre\lib\rt.jar] ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3116238&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-11-21 03:36:57
|
Bugs item #3114101, was opened at 2010-11-20 21:36 Message generated for change (Tracker Item Submitted) made by nicholasxuu You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3114101&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: 5 Private: Yes Submitted By: nico (nicholasxuu) Assigned to: Nobody/Anonymous (nobody) Summary: dr.java cannot run Initial Comment: can't run dr.java, it always show this error before opened. I could be java runtime's problem but i can't figure it out. java.lang.ExceptionInInitializerError at edu.rice.cs.drjava.ui.SplashScreen.<init>(SplashScreen.java:57) at edu.rice.cs.drjava.DrJavaRoot.main(DrJavaRoot.java:108) at edu.rice.cs.drjava.DrJava.configureAndLoadDrJavaRoot(DrJava.java:377) at edu.rice.cs.drjava.DrJava.main(DrJava.java:250) Caused by: java.lang.NullPointerException at sun.awt.shell.Win32ShellFolder2$7.call(Unknown Source) at sun.awt.shell.Win32ShellFolder2$7.call(Unknown Source) at sun.awt.shell.Win32ShellFolderManager2$ComInvoker.invoke(Unknown Source) at sun.awt.shell.ShellFolder.invoke(Unknown Source) at sun.awt.shell.ShellFolder.invoke(Unknown Source) at sun.awt.shell.Win32ShellFolder2.getFileSystemPath(Unknown Source) at sun.awt.shell.Win32ShellFolder2.access$300(Unknown Source) at sun.awt.shell.Win32ShellFolder2$11.call(Unknown Source) at sun.awt.shell.Win32ShellFolder2$11.call(Unknown Source) at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source) at java.util.concurrent.FutureTask.run(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at sun.awt.shell.Win32ShellFolderManager2$ComInvoker$3.run(Unknown Source) at java.lang.Thread.run(Unknown Source) System Properties: DrJava Version drjava-20100913-r5387 DrJava Build Time 20100913-2126 java.runtime.name = Java(TM) SE Runtime Environment sun.boot.library.path = C:\Program Files\Java\jre6\bin java.vm.version = 17.1-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 = java.vm.specification.name = Java Virtual Machine Specification user.dir = <anonymized user.dir> java.runtime.version = 1.6.0_22-b04 java.awt.graphicsenv = sun.awt.Win32GraphicsEnvironment java.endorsed.dirs = C:\Program Files\Java\jre6\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 7 sun.jnu.encoding = GBK java.library.path = C:\Program Files\Java\jre6\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Program Files\PHP\;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Common Files\Thunder Network\KanKan\Codecs;d:\Program Files\MATLAB\R2007b\bin;d:\Program Files\MATLAB\R2007b\bin\win32;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;E:\PROGRA~1\lego\MINDST~1\WinNT\Bin;C:\Program Files\Autodesk\Backburner\;C:\Program Files\Common Files\Autodesk Shared\;C:\Program Files\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files\Windows Live\Shared;C:\Program Files\IDM Computer Solutions\UltraEdit\;C:\Program Files\OpenVPN\bin;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-stable-20100913-r5387.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_22 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 sun.desktop = windows sun.cpu.isalist = pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86 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] Used memory: about 1.80 megabytes Free memory: about 13.70 megabytes Total memory: about 15.50 megabytes Total memory can expand to: about 247.50 megabytes Number of processors/cores: 2 Compiler Discovery Log: ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3114101&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-11-09 19:36:13
|
Feature Requests item #3106165, was opened at 2010-11-09 13:36 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438938&aid=3106165&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: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: Recent Searches Initial Comment: The Find/Replace panel could list recent searches to make it easier to re-run them. Find Results panels already store all the parameters so that the search can be re-run. It should not be too difficult to store them in another list. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438938&aid=3106165&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-11-09 19:35:10
|
Feature Requests item #3106163, was opened at 2010-11-09 13:35 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438938&aid=3106163&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: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: Find All Only in Certain Files Initial Comment: Currently, "Find All" searches all files, if "Search All Documents" is enabled, and only the current document if it is disabled. There could be a third mode, which uses the documents listed in one of the panes, for example a "Find Results" pane, the "Bookmarks" pane or the "Breakpoints" pane. The user would change the "Search in..." mode from "All Documents" or "Current Document" to "Documents listed in...", and then select "Bookmarks", "Breakpoints", or "Find: foo" (a currently open "Find Results" pane). Example: The user searched for "foo" in all documents and found the following matches. File A.java line 10 line 20 File C.java line 30 Now the user starts a search for "bar" and sets "Search in..." to "Documents listed in...", and in the drop-down menu that appears then selects "Find: foo". The search is now limited to the files A.java and C.java. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438938&aid=3106163&group_id=44253 |
From: <san...@gm...> - 2010-10-26 00:25:43
|
Hello, I want to work a little bit on drjava. It looks very nice. I have set up an enviroment and tried to run the unit tests but they fail over time because of an OutOfMemoryError GC overhead limit exceeded. I have tried both with ant and within my eclipse IDE. Normally tests begin to fail after 500 tests. Specially edu.rice.cs.drjava.ui.DefinitionsPaneTest: testGranularUndo seems to be the first one to fail. I have tried to give more memory to my eclipse but this hasn't helped. Is there anything I could be doing wrong? drjava does build and if I try to do the tests in small groups they work. I am using the openjdk 1.6.0_20 under an ubuntu 10.10 64bits SO. Any hint would be appreciated. Greetings. |
From: SourceForge.net <no...@so...> - 2010-10-20 22:20:30
|
Bugs item #3091572, was opened at 2010-10-20 22:20 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3091572&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: 5: Makes DrJ unstable Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: error while executing a program Initial Comment: 1 error occured! while using jdk 1.6.021 ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3091572&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-10-20 16:00:32
|
Bugs item #3091381, was opened at 2010-10-20 16: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=3091381&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: 6: Crashes Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: hsLT4j <a href="http://cjdxsdgdymjt.com/">cjdxsdgdymjt</a>, Initial Comment: hsLT4j <a href="http://cjdxsdgdymjt.com/">cjdxsdgdymjt</a>, [url=http://qdztuhciqrgy.com/]qdztuhciqrgy[/url], [link=http://tdttofyjahyb.com/]tdttofyjahyb[/link], http://rqtkxyitaqab.com/ ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3091381&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-10-18 01:18:03
|
Bugs item #3089444, was opened at 2010-10-17 21:18 Message generated for change (Tracker Item Submitted) made by luxurymode You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3089444&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: Levi Notik (luxurymode) Assigned to: Nobody/Anonymous (nobody) Summary: Static error: undefined class? Initial Comment: I'm a total noob, trying to run the following program: public class Hello { public static void main(String[] args) { System.out.println("Hello World!!"); } } I keep getting an error that Static Error: Undefined class 'hello' Can anyone help? I'm using Win 7 with JDK 6 Update 22 Here is my system properties: System Properties: DrJava Version drjava-20100913-r5387 DrJava Build Time 20100913-2126 drjava.debug.port = 63624 java.runtime.name = Java(TM) SE Runtime Environment sun.boot.library.path = C:\Program Files\Java\jre6\bin java.vm.version = 17.1-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 = java.vm.specification.name = Java Virtual Machine Specification user.dir = <anonymized user.home>\Desktop\Java java.runtime.version = 1.6.0_22-b04 java.awt.graphicsenv = sun.awt.Win32GraphicsEnvironment java.endorsed.dirs = C:\Program Files\Java\jre6\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 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:\tt\ttm;C:\tt\bin;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Windows Live\Shared;C:\Program Files\QuickTime\QTSystem\;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.home>\Desktop\Java\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_22 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 In resource bundle edu.rice.cs.drjava.config.options: nothing In shadowed configuration: font.main = Courier New-16 font.line.numbers = Arial-14 key.delete.next = [shift DELETE] key.delete.previous = [shift BACK_SPACE] quit.prompt = false save.before.compile = true indent.level = 4 show.unchecked.warnings = false window.x = 2697 window.y = 103 last.dir = C:\\Users\\<anonymized user.name>\\Desktop\\Java\\hello.java last.interactions.dir = C:\\Users\\<anonymized user.name>\\Desktop\\Java tabbedpanes.state = 2720 545 700 400 Used memory: about 29.33 megabytes Free memory: about 9.80 megabytes Total memory: about 39.13 megabytes Total memory can expand to: about 247.50 megabytes Number of processors/cores: 4 Compiler Discovery Log: >From config: not set makeFromRuntime: compilerAdapter=edu.rice.cs.drjava.model.compiler.Javac160Compiler attempt = JDK 6.0_22, 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: C:\Program Files\Java\jre6 Dir added: C:\Program Files\Java Dir added: C:\Program Files Dir added: C:\Program Files\Java Dir added: C:\Program Files Dir added: C:\Program Files\Java Dir added: C:\Program Files Dir not added: C:\Java Dir added: <anonymized user.home>\Desktop\Java Dir not added: C:\Java Dir added: <anonymized user.home>\Desktop\Java Dir not added: C:\System\Library\Frameworks\JavaVM.framework\Versions Dir not added: C:\usr\java Dir not added: C:\usr\j2se Dir not added: C:\usr Dir not added: C:\usr\local\java Dir not added: C:\usr\local\j2se Dir not added: C:\usr\local Dir not added: C:\usr\lib\jvm Dir not added: C:\usr\lib\jvm\java-6-sun Dir not added: C:\usr\lib\jvm\java-1.5.0-sun Dir not added: C:\usr\lib\jvm\java-6-openjdk Dir not added: C:\home\javaplt\java\Linux-i686 File added: C:\Program Files\Java\jdk1.6.0_22\lib\tools.jar File not added: C:\Program Files\Java\jdk1.6.0_22\Classes\classes.jar File not added: C:\Program Files\Java\lib\tools.jar File not added: C:\Program Files\Java\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: C:\usr\local\soylatte\lib\classes.jar File not added: C:\usr\local\soylatte\lib\tools.jar File not added: C:\usr\local\JavaMint\langtools\dist\lib\classes.jar File not added: C:\usr\local\JavaMint\langtools\dist\lib\tools.jar MINT_HOME not set File added: <anonymized user.home>\Desktop\Java\DrJava.exe Result: Found library: JDK library 6.0_22 at C:\Program Files\Java\jdk1.6.0_22\lib\tools.jar, boot classpath: [C:\Program Files\Java\jdk1.6.0_22\jre\lib\alt-rt.jar, C:\Program Files\Java\jdk1.6.0_22\jre\lib\charsets.jar, C:\Program Files\Java\jdk1.6.0_22\jre\lib\deploy.jar, C:\Program Files\Java\jdk1.6.0_22\jre\lib\javaws.jar, C:\Program Files\Java\jdk1.6.0_22\jre\lib\jce.jar, C:\Program Files\Java\jdk1.6.0_22\jre\lib\jsse.jar, C:\Program Files\Java\jdk1.6.0_22\jre\lib\management-agent.jar, C:\Program Files\Java\jdk1.6.0_22\jre\lib\plugin.jar, C:\Program Files\Java\jdk1.6.0_22\jre\lib\resources.jar, C:\Program Files\Java\jdk1.6.0_22\jre\lib\rt.jar] >From search: JDK library 6.0_22 at C:\Program Files\Java\jdk1.6.0_22\lib\tools.jar, boot classpath: [C:\Program Files\Java\jdk1.6.0_22\jre\lib\alt-rt.jar, C:\Program Files\Java\jdk1.6.0_22\jre\lib\charsets.jar, C:\Program Files\Java\jdk1.6.0_22\jre\lib\deploy.jar, C:\Program Files\Java\jdk1.6.0_22\jre\lib\javaws.jar, C:\Program Files\Java\jdk1.6.0_22\jre\lib\jce.jar, C:\Program Files\Java\jdk1.6.0_22\jre\lib\jsse.jar, C:\Program Files\Java\jdk1.6.0_22\jre\lib\management-agent.jar, C:\Program Files\Java\jdk1.6.0_22\jre\lib\plugin.jar, C:\Program Files\Java\jdk1.6.0_22\jre\lib\resources.jar, C:\Program Files\Java\jdk1.6.0_22\jre\lib\rt.jar] ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3089444&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-10-17 00:17:34
|
Feature Requests item #3088976, was opened at 2010-10-17 00:17 Message generated for change (Tracker Item Submitted) made by You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438938&aid=3088976&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 Priority: 5 Private: No Submitted By: https://www.google.com/accounts () Assigned to: Nobody/Anonymous (nobody) Summary: Code Overview Initial Comment: It would be very helpful to have something similar to Sublime Text's or BlueJ's "Code Overview" in a vertical pane or, optionally, a fixed position of the window. (image of Sublime Text with overview) http://c0485891.cdn.cloudfiles.rackspacecloud.com/e5d4af70-fd06-4245-bb5f-fd2a577658ba_4_full.png ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438938&aid=3088976&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-10-13 18:40:52
|
Bugs item #3086824, was opened at 2010-10-13 18:40 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3086824&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: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Compiles old version of file Initial Comment: When java files are stored on a network location sometimes you can make a change to the file save it and then compile and it will compile the previous version of the file without the changes. To work around this we have to place the file on a local drive and then compile. These files are stored on a Windows File share and accessed from a mapped drive. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3086824&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-10-12 15:05:08
|
Bugs item #3085956, was opened at 2010-10-12 15: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=3085956&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: 2: Annoying Status: Open Resolution: None Priority: 5 Private: Yes Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: poped up when testing code Initial Comment: java.rmi.ConnectException: Connection refused to host: 127.0.0.1; nested exception is: java.net.ConnectException: Connection refused: connect at sun.rmi.transport.tcp.TCPEndpoint.newSocket(Unknown Source) at sun.rmi.transport.tcp.TCPChannel.createConnection(Unknown Source) at sun.rmi.transport.tcp.TCPChannel.newConnection(Unknown Source) 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.setToDefaultInterpreter(Unknown Source) at edu.rice.cs.drjava.model.repl.newjvm.MainJVM.setToDefaultInterpreter(MainJVM.java:524) at edu.rice.cs.drjava.model.repl.RMIInteractionsModel.setToDefaultInterpreter(RMIInteractionsModel.java:150) at edu.rice.cs.drjava.model.repl.RMIInteractionsModel._resetInterpreter(RMIInteractionsModel.java:118) at edu.rice.cs.drjava.model.repl.InteractionsModel.resetInterpreter(InteractionsModel.java:314) at edu.rice.cs.drjava.model.DefaultGlobalModel.resetInteractions(DefaultGlobalModel.java:370) at edu.rice.cs.drjava.model.DefaultGlobalModel$ConcreteOpenDefDoc._runInInteractions(DefaultGlobalModel.java:560) at edu.rice.cs.drjava.model.DefaultGlobalModel$ConcreteOpenDefDoc.runSmart(DefaultGlobalModel.java:610) at edu.rice.cs.drjava.ui.MainFrame._runMain(MainFrame.java:5671) at edu.rice.cs.drjava.ui.MainFrame.access$5400(MainFrame.java:121) at edu.rice.cs.drjava.ui.MainFrame$58.actionPerformed(MainFrame.java:968) 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.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.net.ConnectException: Connection refused: connect at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.PlainSocketImpl.doConnect(Unknown Source) at java.net.PlainSocketImpl.connectToAddress(Unknown Source) at java.net.PlainSocketImpl.connect(Unknown Source) at java.net.SocksSocketImpl.connect(Unknown Source) at java.net.Socket.connect(Unknown Source) at java.net.Socket.connect(Unknown Source) at java.net.Socket.<init>(Unknown Source) at java.net.Socket.<init>(Unknown Source) at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(Unknown Source) at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(Unknown Source) ... 42 more System Properties: DrJava Version drjava-20100816-r5366 DrJava Build Time 20100816-1819 drjava.debug.port = 2663 java.runtime.name = Java(TM) SE Runtime Environment sun.boot.library.path = C:\Program Files\Java\jre6\bin java.vm.version = 17.0-b17 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.dir> java.runtime.version = 1.6.0_21-b07 java.awt.graphicsenv = sun.awt.Win32GraphicsEnvironment java.endorsed.dirs = C:\Program Files\Java\jre6\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:\Program Files\Java\jre6\bin;.;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\QuickTime\QTSystem\;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 = 5.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-stable-20100816-r5366.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_21 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 In resource bundle edu.rice.cs.drjava.config.options: nothing In shadowed configuration: key.delete.next = [shift DELETE] key.delete.previous = [shift BACK_SPACE] interactions.exit.prompt = false save.before.compile = true recent.files = [H:\\ap cs\\Ch02\\chapter2_44.java,H:\\ap cs\\Ch02\\testFiles.java,H:\\ap cs\\Ch02\\Checker.java,H:\\ap cs\\Ch02\\AnotherSmartVic.java,H:\\ap cs\\Ch02\\Vic.java] window.height = 752 window.width = 1368 window.x = 621 window.y = -2 last.dir = H:\\ap cs\\Ch02\\testFiles.java last.interactions.dir = H:\\ap cs\\Ch02 tabbedpanes.state = 684 384 700 400 new.version.notification.last = 1286808288782 drjava.survey.notification.last = 1286894613529 drjava.survey.result.last = http://www.drjava.org/submit-usage.php?rev=5366&os.name=Windows%20XP&os.version=5.1&java.version=1.6.0_21&java.vendor=Sun%20Microsystems%20Inc. file.ext.registration = always Used memory: about 25.55 megabytes Free memory: about 5.04 megabytes Total memory: about 30.60 megabytes Total memory can expand to: about 123.75 megabytes Number of processors/cores: 1 Compiler Discovery Log: >From config: not set makeFromRuntime: compilerAdapter=edu.rice.cs.drjava.model.compiler.Javac160Compiler attempt = JDK 6.0_21, 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: C:\Program Files\Java\jre6 Dir added: C:\Program Files\Java Dir added: C:\Program Files Dir added: C:\Program Files\Java Dir added: C:\Program Files Dir added: C:\Program Files\Java Dir added: C:\Program Files Dir not added: C:\Java Dir added: C:\ Dir not added: C:\Java Dir added: C:\ Dir not added: H:\System\Library\Frameworks\JavaVM.framework\Versions Dir not added: H:\usr\java Dir not added: H:\usr\j2se Dir not added: H:\usr Dir not added: H:\usr\local\java Dir not added: H:\usr\local\j2se Dir not added: H:\usr\local Dir not added: H:\usr\lib\jvm Dir not added: H:\usr\lib\jvm\java-6-sun Dir not added: H:\usr\lib\jvm\java-1.5.0-sun Dir not added: H:\usr\lib\jvm\java-6-openjdk Dir not added: H:\home\javaplt\java\Linux-i686 File not added: C:\Program Files\Java\lib\tools.jar File not added: C:\Program Files\Java\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: H:\usr\local\soylatte\lib\classes.jar File not added: H:\usr\local\soylatte\lib\tools.jar File not added: H:\usr\local\JavaMint\langtools\dist\lib\classes.jar File not added: H:\usr\local\JavaMint\langtools\dist\lib\tools.jar MINT_HOME not set File added: <anonymized user.dir>\drjava-stable-20100816-r5366.exe Result: ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438935&aid=3085956&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-10-08 01:03:50
|
Feature Requests item #3083417, was opened at 2010-10-07 20:03 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438938&aid=3083417&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 Priority: 5 Private: No Submitted By: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: Configurable Color for Braces { } Initial Comment: While there is brace matching and the color of the brace matching region can be configured, there is no way to change the text (foreground) color of braces itself. We should probably also add square brackets [ ] to the set of delimiters that get matched. Right now, only braces { } and parentheses ( ) get matched. Doing angle bracket <> matching is more difficult because of the operators <, <=, >=, >, <<, >> and >>>. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438938&aid=3083417&group_id=44253 |
From: SourceForge.net <no...@so...> - 2010-10-06 19:35:13
|
Feature Requests item #3082394, was opened at 2010-10-06 14:35 Message generated for change (Tracker Item Submitted) made by mgricken You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438938&aid=3082394&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: Mathias Ricken (mgricken) Assigned to: Nobody/Anonymous (nobody) Summary: Copy Compiler Errors to Clipboard Initial Comment: It should be possible to copy the contents of the Compiler Output pane to the clipboard (or to select parts of it and copy those). There should be a context menu, similar to the one in the Console pane, that provides the "Save Copy of Compiler Output...", "Print Console..." and "Print Preview..." menu items. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=438938&aid=3082394&group_id=44253 |