Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » AspectJ » the shadow for this join point is not exposed in the structure model?!?
the shadow for this join point is not exposed in the structure model?!? [message #67056] Tue, 26 September 2006 15:47 Go to next message
Michael Moser is currently offline Michael MoserFriend
Messages: 914
Registered: July 2009
Senior Member
I am getting tons of yellow warnings in the problem view all reading:

Severity and Description Path Resource Location Creation Time Id
the shadow for this join point is not exposed in the structure model:
method-call(void myPackage.MyClass.someMethod())
[Xlint:shadowNotInStructure] myProcject line 78 1159285096719 9128305

What is AJDT trying to tell me here? Is this an error or a problem?
Should I be concerned? Could some kind soul elaborate a bit what this
message is supposed to mean, please?

Michael

PS.: This is on Eclipse 3.3M2 (20060914) with AJDT 1.5.0 (20060920) - as
usual on the bleeding edge... :-)
Re: the shadow for this join point is not exposed in the structure model?!? [message #67150 is a reply to message #67056] Fri, 06 October 2006 12:50 Go to previous messageGo to next message
Michael Moser is currently offline Michael MoserFriend
Messages: 914
Registered: July 2009
Senior Member
Any wisdom on this one - nobody?
Michael

"Michael Moser" <mmo@zurich.ibm.com> wrote in message
news:efbi21$dgi$1@utils.eclipse.org...
>I am getting tons of yellow warnings in the problem view all reading:
>
> Severity and Description Path Resource Location Creation Time Id
> the shadow for this join point is not exposed in the structure model:
> method-call(void myPackage.MyClass.someMethod())
> [Xlint:shadowNotInStructure] myProcject line 78 1159285096719 9128305
>
> What is AJDT trying to tell me here? Is this an error or a problem?
> Should I be concerned? Could some kind soul elaborate a bit what this
> message is supposed to mean, please?
>
> Michael
>
> PS.: This is on Eclipse 3.3M2 (20060914) with AJDT 1.5.0 (20060920) -
> as usual on the bleeding edge... :-)
>
Re: the shadow for this join point is not exposed in the structure model?!? [message #67187 is a reply to message #67056] Fri, 06 October 2006 16:44 Go to previous messageGo to next message
Andrew Clement is currently offline Andrew ClementFriend
Messages: 162
Registered: July 2009
Senior Member
It suggests it couldn't find the shadow for the method call to
someMethod() when trying to build an advice relationship - so this is
likely to cause a missing icon in the gutter and a missing entry in the
cross references view. But if you run your testcases and your
application works ... don't worry too much about it - however, if you
have the time to create a testcase for us, we will investigate.

Andy.

Michael Moser wrote:
> I am getting tons of yellow warnings in the problem view all reading:
>
> Severity and Description Path Resource Location Creation Time Id
> the shadow for this join point is not exposed in the structure model:
> method-call(void myPackage.MyClass.someMethod())
> [Xlint:shadowNotInStructure] myProcject line 78 1159285096719 9128305
>
> What is AJDT trying to tell me here? Is this an error or a problem?
> Should I be concerned? Could some kind soul elaborate a bit what this
> message is supposed to mean, please?
>
> Michael
>
> PS.: This is on Eclipse 3.3M2 (20060914) with AJDT 1.5.0 (20060920) - as
> usual on the bleeding edge... :-)
>
Re: the shadow for this join point is not exposed in the structure model?!? [message #67269 is a reply to message #67187] Tue, 10 October 2006 11:41 Go to previous message
Michael Moser is currently offline Michael MoserFriend
Messages: 914
Registered: July 2009
Senior Member
The point of my question was more: what precisely *is* this "shadow for
a method call"? Is that something an aspect writer has to know about or
should be aware of? Does this influence whether a pointcut can be
identified or not (i.e. if the aspect will be applied and woven in or
not)?

I simply don't understand the warning message, i.e. what a "shadow" is
(in this context).

Michael


"Andy Clement" <andrew.clement@gmail.com> wrote in message
news:eg614p$ds9$1@utils.eclipse.org...
> It suggests it couldn't find the shadow for the method call to
> someMethod() when trying to build an advice relationship - so this is
> likely to cause a missing icon in the gutter and a missing entry in
> the cross references view. But if you run your testcases and your
> application works ... don't worry too much about it - however, if you
> have the time to create a testcase for us, we will investigate.
>
> Andy.
>
> Michael Moser wrote:
>> I am getting tons of yellow warnings in the problem view all reading:
>>
>> Severity and Description Path Resource Location Creation Time Id
>> the shadow for this join point is not exposed in the structure model:
>> method-call(void myPackage.MyClass.someMethod())
>> [Xlint:shadowNotInStructure] myProcject line 78 1159285096719
>> 9128305
>>
>> What is AJDT trying to tell me here? Is this an error or a problem?
>> Should I be concerned? Could some kind soul elaborate a bit what this
>> message is supposed to mean, please?
>>
>> Michael
>>
>> PS.: This is on Eclipse 3.3M2 (20060914) with AJDT 1.5.0 (20060920) -
>> as usual on the bleeding edge... :-)
>>
Re: the shadow for this join point is not exposed in the structure model?!? [message #594925 is a reply to message #67056] Fri, 06 October 2006 12:50 Go to previous message
Michael Moser is currently offline Michael MoserFriend
Messages: 914
Registered: July 2009
Senior Member
Any wisdom on this one - nobody?
Michael

"Michael Moser" <mmo@zurich.ibm.com> wrote in message
news:efbi21$dgi$1@utils.eclipse.org...
>I am getting tons of yellow warnings in the problem view all reading:
>
> Severity and Description Path Resource Location Creation Time Id
> the shadow for this join point is not exposed in the structure model:
> method-call(void myPackage.MyClass.someMethod())
> [Xlint:shadowNotInStructure] myProcject line 78 1159285096719 9128305
>
> What is AJDT trying to tell me here? Is this an error or a problem?
> Should I be concerned? Could some kind soul elaborate a bit what this
> message is supposed to mean, please?
>
> Michael
>
> PS.: This is on Eclipse 3.3M2 (20060914) with AJDT 1.5.0 (20060920) -
> as usual on the bleeding edge... :-)
>
Re: the shadow for this join point is not exposed in the structure model?!? [message #594962 is a reply to message #67056] Fri, 06 October 2006 16:44 Go to previous message
Andrew Clement is currently offline Andrew ClementFriend
Messages: 162
Registered: July 2009
Senior Member
It suggests it couldn't find the shadow for the method call to
someMethod() when trying to build an advice relationship - so this is
likely to cause a missing icon in the gutter and a missing entry in the
cross references view. But if you run your testcases and your
application works ... don't worry too much about it - however, if you
have the time to create a testcase for us, we will investigate.

Andy.

Michael Moser wrote:
> I am getting tons of yellow warnings in the problem view all reading:
>
> Severity and Description Path Resource Location Creation Time Id
> the shadow for this join point is not exposed in the structure model:
> method-call(void myPackage.MyClass.someMethod())
> [Xlint:shadowNotInStructure] myProcject line 78 1159285096719 9128305
>
> What is AJDT trying to tell me here? Is this an error or a problem?
> Should I be concerned? Could some kind soul elaborate a bit what this
> message is supposed to mean, please?
>
> Michael
>
> PS.: This is on Eclipse 3.3M2 (20060914) with AJDT 1.5.0 (20060920) - as
> usual on the bleeding edge... :-)
>
Re: the shadow for this join point is not exposed in the structure model?!? [message #595040 is a reply to message #67187] Tue, 10 October 2006 11:41 Go to previous message
Michael Moser is currently offline Michael MoserFriend
Messages: 914
Registered: July 2009
Senior Member
The point of my question was more: what precisely *is* this "shadow for
a method call"? Is that something an aspect writer has to know about or
should be aware of? Does this influence whether a pointcut can be
identified or not (i.e. if the aspect will be applied and woven in or
not)?

I simply don't understand the warning message, i.e. what a "shadow" is
(in this context).

Michael


"Andy Clement" <andrew.clement@gmail.com> wrote in message
news:eg614p$ds9$1@utils.eclipse.org...
> It suggests it couldn't find the shadow for the method call to
> someMethod() when trying to build an advice relationship - so this is
> likely to cause a missing icon in the gutter and a missing entry in
> the cross references view. But if you run your testcases and your
> application works ... don't worry too much about it - however, if you
> have the time to create a testcase for us, we will investigate.
>
> Andy.
>
> Michael Moser wrote:
>> I am getting tons of yellow warnings in the problem view all reading:
>>
>> Severity and Description Path Resource Location Creation Time Id
>> the shadow for this join point is not exposed in the structure model:
>> method-call(void myPackage.MyClass.someMethod())
>> [Xlint:shadowNotInStructure] myProcject line 78 1159285096719
>> 9128305
>>
>> What is AJDT trying to tell me here? Is this an error or a problem?
>> Should I be concerned? Could some kind soul elaborate a bit what this
>> message is supposed to mean, please?
>>
>> Michael
>>
>> PS.: This is on Eclipse 3.3M2 (20060914) with AJDT 1.5.0 (20060920) -
>> as usual on the bleeding edge... :-)
>>
Previous Topic:advices from aspectPath jars aren't shown in Cross References view
Next Topic:Aspects that affect all or large number of classes
Goto Forum:
  


Current Time: Tue Apr 23 15:03:17 GMT 2024

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

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

Back to the top