Hi,

It seems that RDT doesn't open debug perspective on suspend such
as breakpoints (JDT does).
I read LaunchSuspendTrigger#handleDebugEvents() and created a patch
for this problem.
Please check it.

Thanks,
Shugo
Index: RubyThread.java
===================================================================
--- RubyThread.java     (revision 116)
+++ RubyThread.java     (revision 117)
@@ -223,5 +224,12 @@
        public void setId(int id) {
                this.id = id;
        }
+       
+       public Object getAdapter(Class adapterType) {
+               if (adapterType.equals(ILaunch.class)) {
+                       return getLaunch();
+               }
+               return super.getAdapter(adapterType);
+       }
 
 }
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Rubyeclipse-development mailing list
Rubyeclipse-development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/rubyeclipse-development

Reply via email to