Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] Interface Inter-type

Hi,
       This code is probably very obvious but I didn't get the difference between addTestMethod and addTestMethod1. One is declared in the inteface and the other is not.
 
public aspect IntertypeAspect {
 
 public void IntertypeInterface.addTestMethod(){
 }
 
 public void IntertypeInterface.addTestMethod1(){
 }
 
}
public interface IntertypeInterface {
 public void addTestMethod1();
 
}
Thanks,
Mohan

This message is for the designated recipient only and may contain privileged, proprietary, or otherwise private information. If you have received it in error, please notify the sender immediately and delete the original. Any other use of the email by you is prohibited.


Back to the top