Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-dev] [AJDT] compile error

Hello everybody,
  I got a problem in AJDT with the codes below:
  ---------------------------------
1  Class Test {
2     public static void main(String args[]) {		
3        vp();
4     }
5  }
 ---------------------------------
1  aspect a {
2    public static void Test.vp(){
3      t.print("Hello!");
4    }
5 }
 ---------------------------------
 It runs. Although, the JDT compiler identifies the line 3 of the
first code as an error. I´d like disable this directly by plug-in
source code. Any thoughts? The AJDT version is 1.2.

Best Regards,

-- 
Alexandre Vasconcelos
www.cin.ufpe.br/~atv


Back to the top