Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-dev] Is this a bug?

Seems like a bug to me.  Have you tried using a letter other than 'C'
(the same as that used the generic interface):

private int target<D>.aField;
public D target<D>.get() { return null; } }

raise it in bugzilla and I will take a look.

Andy.

On 24/01/06, David Pearce <david.pearce@xxxxxxxxxxxxx> wrote:
> Hi all,
>
> I've encountered a slightly odd thing with generic abstract aspects
> packaged in Jar files and I'm not sure whether it's a bug or just
> incorrect syntax on my part.
>
> The code in question is:
>
> File AbstractAspect.aj:
> > public abstract aspect AbstractAspect<T> {
>  >  interface target<C> {
> >   public C get();
> >  }
> >
> > declare parents: T implements target;
>  >
> > private int target<C>.aField;
> > public C target<C>.get() { return null; } }
>
> File TestAspect.aj:
> > aspect TestAspect extends AbstractAspect<Student> {}
>
> (details of the Student class are not important here)
>
> There are two scenarios:
>
> 1) Compile AbstractAspect.aj, TestAspect.aj and Student.java statically
> using ajc.  This works fine.
>
> 2) Compile AbstractAspect.aj separately and put into Jar file.  Then
> compile TestAspect.aj and Student.java using ajc, with the Jar file on
> the classpath.  This does not work.  The error message reported is:
>
> > Inconsistent classfile encountered: The undefined type parameter C is
> >   referenced from within AbstractAspect<T> public aspect TestAspect
> >   extends AbstractAspect<Student> { } ...
>
> I have observed that removing <C> from "target<C>.aField" and "Target<C>
> get()" makes it work.
>
> I have attached the complete example as a tarball.  So, is this a bug or
> is my code at fault?
>
> Any help would be appreciated!!
>
> Cheers,
>
> Dave
>
> --
> Lecturer in Computer Science,
> School of Mathematics, Statistics and Computer Science,
> Victoria University of Wellington,
> PO Box 600,
> Wellington,
> New Zealand.
>
> Office: Cotton 231
> Telephone: +64 4 463 5833
> URL: http://www.mcs.vuw.ac.nz/~djp
>
>
> _______________________________________________
> aspectj-dev mailing list
> aspectj-dev@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/aspectj-dev
>
>
>
>


Back to the top