Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » AspectJ » Mysterious "Joinpoint Probe" view?
Mysterious "Joinpoint Probe" view? [message #50500] Mon, 18 April 2005 06:10 Go to next message
Eclipse UserFriend
Originally posted by: gan-zhi.cs.sjtu.edu.cn

Hi, all

I'm eavluating the newest version of ajdt. And I'm trying to extent AJDT. When I
read file "c:\eclipse
3.1\plugins\org.eclipse.ajdt.ui_1.2.0.20050413151050\plugin. xml ", I found
something very interesting as follows:

<!-- Joinpoint Probe definitions -->
<!-- temporarily removed from plugin till Swing Gui can be converted to
SWT and user-interaction model worked out.
<extension
point="org.eclipse.ui.views">
<view
name="Joinpoint Probe"
icon="icons/actions/joinPointProbeView.gif"
category="org.eclipse.ajdt.ui.cat"
class="org.eclipse.ajdt.internal.ui.wizards.JoinPointProbeView "
id="org.eclipse.ajdt.internal.ui.wizards.JoinPointProbeView ">
</view>
</extension>
-->
<!-- AJDT Help -->

Just for curious, can someone please tell me what's the function of "Joinpoint
Probe" view? Can it help us building pointcuts?

James Gan
Re: Mysterious "Joinpoint Probe" view? [message #50640 is a reply to message #50500] Tue, 19 April 2005 22:04 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: beatmik.acm.org

The Joinpoint probe is a prototype feature that was implmeneted in the
AspectJ 1.0/1.1 timeframe. In a nutshell, it let you type a pointcut and
see the join points that the pointcut would affect.

This is a potentially useful feature, but the UI and implementation were
prototype quality. A better UI would probably be allowing you to select a
pointcut, either in .aj or .ajpage file, and clicking somethign like "show
matched join points" in order to have a view populate.

Mik

"James Gan" <gan-zhi@cs.sjtu.edu.cn> wrote in message
news:d3vjb5$b7t$1@news.eclipse.org...
> Hi, all
>
> I'm eavluating the newest version of ajdt. And I'm trying to extent AJDT.
> When I read file "c:\eclipse
> 3.1\plugins\org.eclipse.ajdt.ui_1.2.0.20050413151050\plugin. xml ", I found
> something very interesting as follows:
>
> <!-- Joinpoint Probe definitions -->
> <!-- temporarily removed from plugin till Swing Gui can be converted to
> SWT and user-interaction model worked out.
> <extension
> point="org.eclipse.ui.views">
> <view
> name="Joinpoint Probe"
> icon="icons/actions/joinPointProbeView.gif"
> category="org.eclipse.ajdt.ui.cat"
>
> class="org.eclipse.ajdt.internal.ui.wizards.JoinPointProbeView "
> id="org.eclipse.ajdt.internal.ui.wizards.JoinPointProbeView ">
> </view>
> </extension>
> -->
> <!-- AJDT Help -->
>
> Just for curious, can someone please tell me what's the function of
> "Joinpoint Probe" view? Can it help us building pointcuts?
>
> James Gan
Re: Mysterious "Joinpoint Probe" view? [message #50668 is a reply to message #50640] Wed, 20 April 2005 00:54 Go to previous message
Eclipse UserFriend
Originally posted by: gan-zhi.cs.sjtu.edu.cn

Thank you for your kind help. I now understand it!

James Gan

news.eclipse.org wrote:
> The Joinpoint probe is a prototype feature that was implmeneted in the
> AspectJ 1.0/1.1 timeframe. In a nutshell, it let you type a pointcut and
> see the join points that the pointcut would affect.
>
> This is a potentially useful feature, but the UI and implementation were
> prototype quality. A better UI would probably be allowing you to select a
> pointcut, either in .aj or .ajpage file, and clicking somethign like "show
> matched join points" in order to have a view populate.
>
> Mik
>
> "James Gan" <gan-zhi@cs.sjtu.edu.cn> wrote in message
> news:d3vjb5$b7t$1@news.eclipse.org...
>
>>Hi, all
>>
>>I'm eavluating the newest version of ajdt. And I'm trying to extent AJDT.
>>When I read file "c:\eclipse
>> 3.1\plugins\org.eclipse.ajdt.ui_1.2.0.20050413151050\plugin. xml ", I found
>>something very interesting as follows:
>>
>><!-- Joinpoint Probe definitions -->
>><!-- temporarily removed from plugin till Swing Gui can be converted to
>> SWT and user-interaction model worked out.
>> <extension
>> point="org.eclipse.ui.views">
>> <view
>> name="Joinpoint Probe"
>> icon="icons/actions/joinPointProbeView.gif"
>> category="org.eclipse.ajdt.ui.cat"
>>
>>class="org.eclipse.ajdt.internal.ui.wizards.JoinPointProbeView "
>> id="org.eclipse.ajdt.internal.ui.wizards.JoinPointProbeView ">
>> </view>
>> </extension>
>>-->
>><!-- AJDT Help -->
>>
>>Just for curious, can someone please tell me what's the function of
>>"Joinpoint Probe" view? Can it help us building pointcuts?
>>
>>James Gan
>
>
>
Re: Mysterious "Joinpoint Probe" view? [message #587724 is a reply to message #50500] Tue, 19 April 2005 22:04 Go to previous message
Eclipse UserFriend
Originally posted by: beatmik.acm.org

The Joinpoint probe is a prototype feature that was implmeneted in the
AspectJ 1.0/1.1 timeframe. In a nutshell, it let you type a pointcut and
see the join points that the pointcut would affect.

This is a potentially useful feature, but the UI and implementation were
prototype quality. A better UI would probably be allowing you to select a
pointcut, either in .aj or .ajpage file, and clicking somethign like "show
matched join points" in order to have a view populate.

Mik

"James Gan" <gan-zhi@cs.sjtu.edu.cn> wrote in message
news:d3vjb5$b7t$1@news.eclipse.org...
> Hi, all
>
> I'm eavluating the newest version of ajdt. And I'm trying to extent AJDT.
> When I read file "c:\eclipse
> 3.1\plugins\org.eclipse.ajdt.ui_1.2.0.20050413151050\plugin. xml ", I found
> something very interesting as follows:
>
> <!-- Joinpoint Probe definitions -->
> <!-- temporarily removed from plugin till Swing Gui can be converted to
> SWT and user-interaction model worked out.
> <extension
> point="org.eclipse.ui.views">
> <view
> name="Joinpoint Probe"
> icon="icons/actions/joinPointProbeView.gif"
> category="org.eclipse.ajdt.ui.cat"
>
> class="org.eclipse.ajdt.internal.ui.wizards.JoinPointProbeView "
> id="org.eclipse.ajdt.internal.ui.wizards.JoinPointProbeView ">
> </view>
> </extension>
> -->
> <!-- AJDT Help -->
>
> Just for curious, can someone please tell me what's the function of
> "Joinpoint Probe" view? Can it help us building pointcuts?
>
> James Gan
Re: Mysterious "Joinpoint Probe" view? [message #587734 is a reply to message #50640] Wed, 20 April 2005 00:54 Go to previous message
James Gan is currently offline James GanFriend
Messages: 27
Registered: July 2009
Junior Member
Thank you for your kind help. I now understand it!

James Gan

news.eclipse.org wrote:
> The Joinpoint probe is a prototype feature that was implmeneted in the
> AspectJ 1.0/1.1 timeframe. In a nutshell, it let you type a pointcut and
> see the join points that the pointcut would affect.
>
> This is a potentially useful feature, but the UI and implementation were
> prototype quality. A better UI would probably be allowing you to select a
> pointcut, either in .aj or .ajpage file, and clicking somethign like "show
> matched join points" in order to have a view populate.
>
> Mik
>
> "James Gan" <gan-zhi@cs.sjtu.edu.cn> wrote in message
> news:d3vjb5$b7t$1@news.eclipse.org...
>
>>Hi, all
>>
>>I'm eavluating the newest version of ajdt. And I'm trying to extent AJDT.
>>When I read file "c:\eclipse
>> 3.1\plugins\org.eclipse.ajdt.ui_1.2.0.20050413151050\plugin. xml ", I found
>>something very interesting as follows:
>>
>><!-- Joinpoint Probe definitions -->
>><!-- temporarily removed from plugin till Swing Gui can be converted to
>> SWT and user-interaction model worked out.
>> <extension
>> point="org.eclipse.ui.views">
>> <view
>> name="Joinpoint Probe"
>> icon="icons/actions/joinPointProbeView.gif"
>> category="org.eclipse.ajdt.ui.cat"
>>
>>class="org.eclipse.ajdt.internal.ui.wizards.JoinPointProbeView "
>> id="org.eclipse.ajdt.internal.ui.wizards.JoinPointProbeView ">
>> </view>
>> </extension>
>>-->
>><!-- AJDT Help -->
>>
>>Just for curious, can someone please tell me what's the function of
>>"Joinpoint Probe" view? Can it help us building pointcuts?
>>
>>James Gan
>
>
>
Previous Topic:Use AJDT with ant
Next Topic:No *.class exported when using "Export F and P with AspectJ support"
Goto Forum:
  


Current Time: Thu Apr 25 04:06:48 GMT 2024

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

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

Back to the top