Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] Why all mixin fields are transient?

Do you have an example of what you mean? This is fine:

C:\aspectj1.5.3>cat A.java
public class A {
}

aspect X {
 public int A.i;
}

C:\aspectj1.5.3>ajc A.java

C:\aspectj1.5.3>javap A
Compiled from "A.java"
public class A extends java.lang.Object{
   public int i;
   public A();
}



On 12/06/07, Jason Nie <nielinjie@xxxxxxxxx> wrote:

I find all mixin fields are marked as transient, by the waver. Why?  Can I
switch this off?
--
View this message in context: http://www.nabble.com/Why-all-mixin-fields-are-transient--tf3906894.html#a11076710
Sent from the AspectJ - users mailing list archive at Nabble.com.

_______________________________________________
aspectj-users mailing list
aspectj-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/aspectj-users



Back to the top