Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » AspectJ » AJDT asking to enable weaving in Eclipse
AJDT asking to enable weaving in Eclipse [message #73887] Mon, 11 May 2009 13:03 Go to next message
Eclipse UserFriend
Originally posted by: jacek.pospychala.pl.ibm.com

hi AJDT :-)

How does AJDT enable the aspects weaving support in the Eclipse it's
running? (To enable the advanced integration with JDT)

Which class does that?

Thanks!


--
Rational Elite Support for Eclipse
Re: AJDT asking to enable weaving in Eclipse [message #73905 is a reply to message #73887] Mon, 11 May 2009 13:27 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: jacek.pospychala.pl.ibm.com

Ok, I see it:
org.eclipse.contribution.jdt.preferences.WeavingStateConfigu rer
in org.eclipse.contribution.jdt bundle.

Jacek


Jacek Pospychala pisze:
> hi AJDT :-)
>
> How does AJDT enable the aspects weaving support in the Eclipse it's
> running? (To enable the advanced integration with JDT)
>
> Which class does that?
>
> Thanks!
>
>


--
Rational Elite Support for Eclipse
Re: AJDT asking to enable weaving in Eclipse [message #73940 is a reply to message #73905] Mon, 11 May 2009 22:50 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: andrew.eisenberg.springsource.com

That's right.

A description of how it is implemented is here:
http://wiki.eclipse.org/JDT_weaving_features

And org.eclipse.contribution.jdt.preferences.WeavingStateConfigu rerUI
provides UI support for it.

What are you trying to do?


On 11/05/09 6:27 AM, in article gu9938$eeo$1@build.eclipse.org, "Jacek
Pospychala" <jacek.pospychala@pl.ibm.com> wrote:

> Ok, I see it:
> org.eclipse.contribution.jdt.preferences.WeavingStateConfigu rer
> in org.eclipse.contribution.jdt bundle.
>
> Jacek
>
>
> Jacek Pospychala pisze:
>> hi AJDT :-)
>>
>> How does AJDT enable the aspects weaving support in the Eclipse it's
>> running? (To enable the advanced integration with JDT)
>>
>> Which class does that?
>>
>> Thanks!
>>
>>
>
Re: AJDT asking to enable weaving in Eclipse [message #74011 is a reply to message #73940] Mon, 25 May 2009 13:05 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: jacek.pospychala.pl.ibm.com

hi Andrew,
I was looking at how to most seamlessly plug into weaving Eclipse
plugins. My own plug-in would just contribute aspects, and I would not
have to worry whether weaving hook is enabled or not, but leave it to
user to enable/disable Weaving as it is done in AJDT/JDT integration.

I found that your code depends on JDT and the aspect that verifies
Weaving hook installation success also requires some particular JDT class.
I used that as an example for my own Weaving hook enabler. However
someone could come up with solution generic enough so that it would not
require JDT.

In my case I wanted to weave various plug-ins and not assume that JDT is
available.

Andrew Eisenberg pisze:
> That's right.
>
> A description of how it is implemented is here:
> http://wiki.eclipse.org/JDT_weaving_features
>
> And org.eclipse.contribution.jdt.preferences.WeavingStateConfigu rerUI
> provides UI support for it.
>
> What are you trying to do?
>
>
> On 11/05/09 6:27 AM, in article gu9938$eeo$1@build.eclipse.org, "Jacek
> Pospychala" <jacek.pospychala@pl.ibm.com> wrote:
>
>> Ok, I see it:
>> org.eclipse.contribution.jdt.preferences.WeavingStateConfigu rer
>> in org.eclipse.contribution.jdt bundle.
>>
>> Jacek
>>
>>
>> Jacek Pospychala pisze:
>>> hi AJDT :-)
>>>
>>> How does AJDT enable the aspects weaving support in the Eclipse it's
>>> running? (To enable the advanced integration with JDT)
>>>
>>> Which class does that?
>>>
>>> Thanks!
>>>
>>>
>


--
Rational Elite Support for Eclipse
Re: AJDT asking to enable weaving in Eclipse [message #74029 is a reply to message #74011] Tue, 26 May 2009 18:48 Go to previous message
Eclipse UserFriend
Originally posted by: andrew.eisenberg.springsource.com

In your case, you might be better off using Equinox Aspects alone, without
using the JDT weaving service. EA is available from the AJDT update site.
Also, instructions on how to use it in your osgi application are available
here:
http://www.eclipse.org/equinox/incubator/aspects/index.php


On 25/05/09 6:05 AM, in article gve519$h73$1@build.eclipse.org, "Jacek
Pospychala" <jacek.pospychala@pl.ibm.com> wrote:

> hi Andrew,
> I was looking at how to most seamlessly plug into weaving Eclipse
> plugins. My own plug-in would just contribute aspects, and I would not
> have to worry whether weaving hook is enabled or not, but leave it to
> user to enable/disable Weaving as it is done in AJDT/JDT integration.
>
> I found that your code depends on JDT and the aspect that verifies
> Weaving hook installation success also requires some particular JDT class.
> I used that as an example for my own Weaving hook enabler. However
> someone could come up with solution generic enough so that it would not
> require JDT.
>
> In my case I wanted to weave various plug-ins and not assume that JDT is
> available.
>
> Andrew Eisenberg pisze:
>> That's right.
>>
>> A description of how it is implemented is here:
>> http://wiki.eclipse.org/JDT_weaving_features
>>
>> And org.eclipse.contribution.jdt.preferences.WeavingStateConfigu rerUI
>> provides UI support for it.
>>
>> What are you trying to do?
>>
>>
>> On 11/05/09 6:27 AM, in article gu9938$eeo$1@build.eclipse.org, "Jacek
>> Pospychala" <jacek.pospychala@pl.ibm.com> wrote:
>>
>>> Ok, I see it:
>>> org.eclipse.contribution.jdt.preferences.WeavingStateConfigu rer
>>> in org.eclipse.contribution.jdt bundle.
>>>
>>> Jacek
>>>
>>>
>>> Jacek Pospychala pisze:
>>>> hi AJDT :-)
>>>>
>>>> How does AJDT enable the aspects weaving support in the Eclipse it's
>>>> running? (To enable the advanced integration with JDT)
>>>>
>>>> Which class does that?
>>>>
>>>> Thanks!
>>>>
>>>>
>>
>
Re: AJDT asking to enable weaving in Eclipse [message #599951 is a reply to message #73887] Mon, 11 May 2009 13:27 Go to previous message
Jacek Pospychala is currently offline Jacek PospychalaFriend
Messages: 159
Registered: July 2009
Senior Member
Ok, I see it:
org.eclipse.contribution.jdt.preferences.WeavingStateConfigu rer
in org.eclipse.contribution.jdt bundle.

Jacek


Jacek Pospychala pisze:
> hi AJDT :-)
>
> How does AJDT enable the aspects weaving support in the Eclipse it's
> running? (To enable the advanced integration with JDT)
>
> Which class does that?
>
> Thanks!
>
>


--
Rational Elite Support for Eclipse
Re: AJDT asking to enable weaving in Eclipse [message #599966 is a reply to message #73905] Mon, 11 May 2009 22:50 Go to previous message
Andrew Eisenberg is currently offline Andrew EisenbergFriend
Messages: 77
Registered: July 2009
Member
That's right.

A description of how it is implemented is here:
http://wiki.eclipse.org/JDT_weaving_features

And org.eclipse.contribution.jdt.preferences.WeavingStateConfigu rerUI
provides UI support for it.

What are you trying to do?


On 11/05/09 6:27 AM, in article gu9938$eeo$1@build.eclipse.org, "Jacek
Pospychala" <jacek.pospychala@pl.ibm.com> wrote:

> Ok, I see it:
> org.eclipse.contribution.jdt.preferences.WeavingStateConfigu rer
> in org.eclipse.contribution.jdt bundle.
>
> Jacek
>
>
> Jacek Pospychala pisze:
>> hi AJDT :-)
>>
>> How does AJDT enable the aspects weaving support in the Eclipse it's
>> running? (To enable the advanced integration with JDT)
>>
>> Which class does that?
>>
>> Thanks!
>>
>>
>
Re: AJDT asking to enable weaving in Eclipse [message #599997 is a reply to message #73940] Mon, 25 May 2009 13:05 Go to previous message
Jacek Pospychala is currently offline Jacek PospychalaFriend
Messages: 159
Registered: July 2009
Senior Member
hi Andrew,
I was looking at how to most seamlessly plug into weaving Eclipse
plugins. My own plug-in would just contribute aspects, and I would not
have to worry whether weaving hook is enabled or not, but leave it to
user to enable/disable Weaving as it is done in AJDT/JDT integration.

I found that your code depends on JDT and the aspect that verifies
Weaving hook installation success also requires some particular JDT class.
I used that as an example for my own Weaving hook enabler. However
someone could come up with solution generic enough so that it would not
require JDT.

In my case I wanted to weave various plug-ins and not assume that JDT is
available.

Andrew Eisenberg pisze:
> That's right.
>
> A description of how it is implemented is here:
> http://wiki.eclipse.org/JDT_weaving_features
>
> And org.eclipse.contribution.jdt.preferences.WeavingStateConfigu rerUI
> provides UI support for it.
>
> What are you trying to do?
>
>
> On 11/05/09 6:27 AM, in article gu9938$eeo$1@build.eclipse.org, "Jacek
> Pospychala" <jacek.pospychala@pl.ibm.com> wrote:
>
>> Ok, I see it:
>> org.eclipse.contribution.jdt.preferences.WeavingStateConfigu rer
>> in org.eclipse.contribution.jdt bundle.
>>
>> Jacek
>>
>>
>> Jacek Pospychala pisze:
>>> hi AJDT :-)
>>>
>>> How does AJDT enable the aspects weaving support in the Eclipse it's
>>> running? (To enable the advanced integration with JDT)
>>>
>>> Which class does that?
>>>
>>> Thanks!
>>>
>>>
>


--
Rational Elite Support for Eclipse
Re: AJDT asking to enable weaving in Eclipse [message #600006 is a reply to message #74011] Tue, 26 May 2009 18:48 Go to previous message
Andrew Eisenberg is currently offline Andrew EisenbergFriend
Messages: 77
Registered: July 2009
Member
In your case, you might be better off using Equinox Aspects alone, without
using the JDT weaving service. EA is available from the AJDT update site.
Also, instructions on how to use it in your osgi application are available
here:
http://www.eclipse.org/equinox/incubator/aspects/index.php


On 25/05/09 6:05 AM, in article gve519$h73$1@build.eclipse.org, "Jacek
Pospychala" <jacek.pospychala@pl.ibm.com> wrote:

> hi Andrew,
> I was looking at how to most seamlessly plug into weaving Eclipse
> plugins. My own plug-in would just contribute aspects, and I would not
> have to worry whether weaving hook is enabled or not, but leave it to
> user to enable/disable Weaving as it is done in AJDT/JDT integration.
>
> I found that your code depends on JDT and the aspect that verifies
> Weaving hook installation success also requires some particular JDT class.
> I used that as an example for my own Weaving hook enabler. However
> someone could come up with solution generic enough so that it would not
> require JDT.
>
> In my case I wanted to weave various plug-ins and not assume that JDT is
> available.
>
> Andrew Eisenberg pisze:
>> That's right.
>>
>> A description of how it is implemented is here:
>> http://wiki.eclipse.org/JDT_weaving_features
>>
>> And org.eclipse.contribution.jdt.preferences.WeavingStateConfigu rerUI
>> provides UI support for it.
>>
>> What are you trying to do?
>>
>>
>> On 11/05/09 6:27 AM, in article gu9938$eeo$1@build.eclipse.org, "Jacek
>> Pospychala" <jacek.pospychala@pl.ibm.com> wrote:
>>
>>> Ok, I see it:
>>> org.eclipse.contribution.jdt.preferences.WeavingStateConfigu rer
>>> in org.eclipse.contribution.jdt bundle.
>>>
>>> Jacek
>>>
>>>
>>> Jacek Pospychala pisze:
>>>> hi AJDT :-)
>>>>
>>>> How does AJDT enable the aspects weaving support in the Eclipse it's
>>>> running? (To enable the advanced integration with JDT)
>>>>
>>>> Which class does that?
>>>>
>>>> Thanks!
>>>>
>>>>
>>
>
Previous Topic:3.5M7 problem with eclipse preferences AspectJ Compiler
Next Topic:cannot install AJDT 1.6.4, org.eclipse.swt [3.4.0.v3448f]
Goto Forum:
  


Current Time: Thu Apr 18 18:57:40 GMT 2024

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

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

Back to the top