001    package com.hammurapi.eventbus.tests.familyties;
002    
003    import com.hammurapi.eventbus.AbstractEventBus;
004    import com.hammurapi.eventbus.EventDispatchJoinContext;
005    
006    /**
007     * Event dispatch join context with partially bound generic parameters.
008     * @author Pavel Vlasov
009     *
010     * @param <E>
011     * @param <P>
012     * @param <C>
013     */
014    public interface FamilyTiesEventDispatchJoinContext extends FamilyTiesEventDispatchContext, EventDispatchJoinContext<com.hammurapi.eventbus.tests.familyties.model.Relative, java.lang.Integer, com.hammurapi.eventbus.tests.familyties.rules.FamilyTiesRules, AbstractEventBus.Handle<com.hammurapi.eventbus.tests.familyties.model.Relative,java.lang.Integer,com.hammurapi.eventbus.tests.familyties.rules.FamilyTiesRules,Long>, FamilyTiesEventStore> {
015    
016    }