Skip to main content



      Home
Home » Language IDEs » AspectJ » Debug class after adding @Around aspect
Debug class after adding @Around aspect [message #1855674] Wed, 26 October 2022 09:15
Eclipse UserFriend
Normally in debug mode moving the mouse over variable shows the value of the variable property

When you add and Around Aspect to a method, the above feature is not work in some situations.


public class aSample{

 @aSampleAroundAspect
 public void aMethod() {
   String foo = "aString;
  //setting break point here and moving the mouse over foo does NOT show foo Value
   System.out.println(foo ); 

   if( a== b ){
         String bar = "aString;;
         //setting break point here, inside if clause, and moving the mouse over foo SHOWS bar Value
         System.out.println(bar); 
   }
 }

}



Eclipse Version 2022-09 (4.25.0)
AJDT Version: 2.2.4.202203241553


Previous Topic:"build" folder doesn not expand
Next Topic:AJDT which version
Goto Forum:
  


Current Time: Sat May 17 17:24:29 EDT 2025

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

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

Back to the top