Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Minor
-
Resolution: Unresolved
-
Affects Version/s: 1.7.0
-
Fix Version/s: None
-
Component/s: Groovy Console
-
Labels:None
-
Environment:Tested on Windows XP
-
Number of attachments :
Description
The output is shared between GroovyConsole windows created from the same process, since requesting a new window doesn't create a new process.
Steps to reproduce:
1. Open a new console window (ctrl + shift + n)
2. Cause some output to be generated
3. Observe output in original window
The output of that script will be displayed on all console windows created in the (ctrl + shift + n) way but not when it is launched as a new process. I believe the latter behavior to be preferable.
Issue Links
- relates to
-
GROOVY-4596
GroovyConsole - Executing script which performs a System.exit(int) causes GroovyConsole to close
-
this one is a bit difficult to implement, since it is a normal swing application we are talking here about. Normally Java processes don't create other Java processes. It would require native code, or a library that provides that. Any idea on that?