Package org.springmodules.xt.model.introductor

Examples of org.springmodules.xt.model.introductor.SimpleIntroductionInfo


     * @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));
    }
View Full Code Here


    /**
     * Constructor.
     * @param introducedInterfaces The interfaces to introduce.
     */
    public BeanIntroductorAdvisor(Class[] introducedInterfaces) {
        super(new BeanIntroductorInterceptor(introducedInterfaces), new SimpleIntroductionInfo(introducedInterfaces));
    }
View Full Code Here

TOP

Related Classes of org.springmodules.xt.model.introductor.SimpleIntroductionInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.