* @param introducedInterfaces The interfaces to introduce, carrying the new behaviour.
* @param implementor The implementor object, specifying the implementation of the introduced interfaces.
* Please note that it must implement the given interfaces.
*/
public ImplementorIntroductorAdvisor(Class[] introducedInterfaces, Object implementor) {
super(new ImplementorIntroductorInterceptor(introducedInterfaces, implementor), new SimpleIntroductionInfo(introducedInterfaces));
}