Skip to main content



      Home
Home » Eclipse Projects » Eclipse Platform » URGENT! Debug Framework
URGENT! Debug Framework [message #246244] Thu, 27 May 2004 09:38 Go to next message
Eclipse UserFriend
Originally posted by: soranom.ar.ibm.com

Hello,

Following the subject in
http://dev.eclipse.org/newslists/news.eclipse.platform/msg03 767.html
I would like to deepen my Debug framework awareness.

Please, could anybody send me examples about
1) Implemention of an IThread
2) Implemention of an IStrackFrame
3) Implemention of an IVariable holding IValues
4) Implemention of an IDebugModelPresentation and its extension points

Thanks a lot!!
Angeles
Re: URGENT! Debug Framework [message #246357 is a reply to message #246244] Thu, 27 May 2004 13:27 Go to previous messageGo to next message
Eclipse UserFriend
There are implementations of all of these within Eclipse itself for the Java
debugger.

I would start:
http://www.eclipse.org/articles/Article-Launch-Framework/lau nch.html
and
http://www.eclipse.org/articles/Article-Java-launch/launchin g-java.html

and then start browsing/debugging the Java debugger implementation.

HTH
Darins

"Angeles Sorano" <soranom@ar.ibm.com> wrote in message
news:c94r13$k00$1@eclipse.org...
>
> Hello,
>
> Following the subject in
> http://dev.eclipse.org/newslists/news.eclipse.platform/msg03 767.html
> I would like to deepen my Debug framework awareness.
>
> Please, could anybody send me examples about
> 1) Implemention of an IThread
> 2) Implemention of an IStrackFrame
> 3) Implemention of an IVariable holding IValues
> 4) Implemention of an IDebugModelPresentation and its extension points
>
> Thanks a lot!!
> Angeles
>
Re: URGENT! Debug Framework [message #246412 is a reply to message #246357] Thu, 27 May 2004 13:30 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: soranom.ar.ibm.com

Thanks Darin for your answer but,

I have forgot to tell you that my Debug implementation is oriented to
non-Java language. So, I don't know if this a problem or not.
I mean, i would like to know if I have to create a new Debug model or
extend all the existing debug fuctionality.

Up to know, I have reached to create a Run/Debug Configuration (a
LaunchConfigurationDelegate, a LaunchConfigurationTabGroup
and a MainTab).
I have no problem for "Run mode" but I don't know how to do in "Debug
mode".
i.e. inside my LaunchConfigurationDelegate.launch(....){
if (mode == "debug")
{
/*WHAT SHOULD DO HERE???*/
}
}

Thanks for advice!
Angeles


Darin Swanson wrote:

> There are implementations of all of these within Eclipse itself for the Java
> debugger.

> I would start:
> http://www.eclipse.org/articles/Article-Launch-Framework/lau nch.html
> and
> http://www.eclipse.org/articles/Article-Java-launch/launchin g-java.html

> and then start browsing/debugging the Java debugger implementation.

> HTH
> Darins

> "Angeles Sorano" <soranom@ar.ibm.com> wrote in message
> news:c94r13$k00$1@eclipse.org...
> >
> > Hello,
> >
> > Following the subject in
> > http://dev.eclipse.org/newslists/news.eclipse.platform/msg03 767.html
> > I would like to deepen my Debug framework awareness.
> >
> > Please, could anybody send me examples about
> > 1) Implemention of an IThread
> > 2) Implemention of an IStrackFrame
> > 3) Implemention of an IVariable holding IValues
> > 4) Implemention of an IDebugModelPresentation and its extension points
> >
> > Thanks a lot!!
> > Angeles
> >
Re: URGENT! Debug Framework [message #246647 is a reply to message #246412] Thu, 27 May 2004 20:34 Go to previous messageGo to next message
Eclipse UserFriend
DarinS advice still applies. The Eclipse SDK comes with a java debugger,
if you want to see another example you can also look at the c debugger
in the CDT.
Kevin

Angeles Sorano wrote:

> Thanks Darin for your answer but,
>
> I have forgot to tell you that my Debug implementation is oriented to
> non-Java language. So, I don't know if this a problem or not.
> I mean, i would like to know if I have to create a new Debug model or
> extend all the existing debug fuctionality.
>
> Up to know, I have reached to create a Run/Debug Configuration (a
> LaunchConfigurationDelegate, a LaunchConfigurationTabGroup
> and a MainTab).
> I have no problem for "Run mode" but I don't know how to do in "Debug
> mode".
> i.e. inside my LaunchConfigurationDelegate.launch(....){
> if (mode == "debug")
> {
> /*WHAT SHOULD DO HERE???*/
> }
> }
>
> Thanks for advice!
> Angeles
>
>
> Darin Swanson wrote:
>
>
>>There are implementations of all of these within Eclipse itself for the Java
>>debugger.
>
>
>>I would start:
>> http://www.eclipse.org/articles/Article-Launch-Framework/lau nch.html
>>and
>> http://www.eclipse.org/articles/Article-Java-launch/launchin g-java.html
>
>
>>and then start browsing/debugging the Java debugger implementation.
>
>
>>HTH
>>Darins
>
>
>>"Angeles Sorano" <soranom@ar.ibm.com> wrote in message
>>news:c94r13$k00$1@eclipse.org...
>>
>>>Hello,
>>>
>>>Following the subject in
>>> http://dev.eclipse.org/newslists/news.eclipse.platform/msg03 767.html
>>>I would like to deepen my Debug framework awareness.
>>>
>>>Please, could anybody send me examples about
>>>1) Implemention of an IThread
>>>2) Implemention of an IStrackFrame
>>>3) Implemention of an IVariable holding IValues
>>>4) Implemention of an IDebugModelPresentation and its extension points
>>>
>>>Thanks a lot!!
>>>Angeles
>>>
>
>
>
Re: URGENT! Debug Framework [message #246822 is a reply to message #246647] Fri, 28 May 2004 09:26 Go to previous message
Eclipse UserFriend
Originally posted by: soranom.ar.ibm.com

Ok, Kevin/Darin....we are understand us. :)
See, that I have to do is a plugin Debbuger that it'll use an external
debugger.
I think the same, that CDT is closer to my debug model.
But the only problem is there are so many classes and interfaces that I
can't understand its design model. :(
So, I think I should re-direct my mail to CDT newsgroup.

Thanks both for tyour help!!!!
Anyway I'd like to know your opinions.

Angeles

Kevin Barnes wrote:

> DarinS advice still applies. The Eclipse SDK comes with a java debugger,
> if you want to see another example you can also look at the c debugger
> in the CDT.
> Kevin

> Angeles Sorano wrote:

> > Thanks Darin for your answer but,
> >
> > I have forgot to tell you that my Debug implementation is oriented to
> > non-Java language. So, I don't know if this a problem or not.
> > I mean, i would like to know if I have to create a new Debug model or
> > extend all the existing debug fuctionality.
> >
> > Up to know, I have reached to create a Run/Debug Configuration (a
> > LaunchConfigurationDelegate, a LaunchConfigurationTabGroup
> > and a MainTab).
> > I have no problem for "Run mode" but I don't know how to do in "Debug
> > mode".
> > i.e. inside my LaunchConfigurationDelegate.launch(....){
> > if (mode == "debug")
> > {
> > /*WHAT SHOULD DO HERE???*/
> > }
> > }
> >
> > Thanks for advice!
> > Angeles
> >
> >
> > Darin Swanson wrote:
> >
> >
> >>There are implementations of all of these within Eclipse itself for the
Java
> >>debugger.
> >
> >
> >>I would start:
> >> http://www.eclipse.org/articles/Article-Launch-Framework/lau nch.html
> >>and
> >> http://www.eclipse.org/articles/Article-Java-launch/launchin g-java.html
> >
> >
> >>and then start browsing/debugging the Java debugger implementation.
> >
> >
> >>HTH
> >>Darins
> >
> >
> >>"Angeles Sorano" <soranom@ar.ibm.com> wrote in message
> >>news:c94r13$k00$1@eclipse.org...
> >>
> >>>Hello,
> >>>
> >>>Following the subject in
> >>> http://dev.eclipse.org/newslists/news.eclipse.platform/msg03 767.html
> >>>I would like to deepen my Debug framework awareness.
> >>>
> >>>Please, could anybody send me examples about
> >>>1) Implemention of an IThread
> >>>2) Implemention of an IStrackFrame
> >>>3) Implemention of an IVariable holding IValues
> >>>4) Implemention of an IDebugModelPresentation and its extension points
> >>>
> >>>Thanks a lot!!
> >>>Angeles
> >>>
> >
> >
> >
Previous Topic:Context menu - TargetID
Next Topic:show/hide coolbar in RCP
Goto Forum:
  


Current Time: Mon May 12 06:53:18 EDT 2025

Powered by FUDForum. Page generated in 0.06435 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top