Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] help on pointcuts weaving

hi,
 
The call in the java class looks like this
 
InetAddress testAddress = null;
Socket s = new Socket(addr, 80);
testAddress = s.getInetAddress().getLocalHost();
 
I want the advice to weave in at this "s.getInetAddress().getLocalHost(); " point.
 
The pointcut and advice with which i currently tested looks like this
 
pointcut name2()
  : call(public * Socket.getInetAddress(..)) && withincode(public * InetAddress.getLocalHost(..));
  
  
  before() : name2() {
   System.out.println("able to weave"); }
 
 
I have tested using this call(public * Socket.getInetAddress..*(..)).
 
But the advice dint get weaved in
 
thank you.
 
 

Back to the top