1 package nl.tudelft.simulation.naming.context.event; 2 3 import org.djutils.event.EventProducer; 4 5 import nl.tudelft.simulation.naming.context.ContextInterface; 6 7 /** 8 * EventContext is the tagging interface combining the ContextInterface, EventContextInterface, and EventProducer. 9 * <p> 10 * Copyright (c) 2020-2024 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See 11 * for project information <a href="https://simulation.tudelft.nl/" target="_blank"> https://simulation.tudelft.nl</a>. The DSOL 12 * project is distributed under a three-clause BSD-style license, which can be found at 13 * <a href="https://https://simulation.tudelft.nl/dsol/docs/latest/license.html" target="_blank"> 14 * https://https://simulation.tudelft.nl/dsol/docs/latest/license.html</a>. 15 * </p> 16 * @author <a href="https://www.tudelft.nl/averbraeck" target="_blank">Alexander Verbraeck</a> 17 */ 18 public interface EventContext extends ContextInterface, EventContextInterface, EventProducer 19 { 20 // tagging interface 21 }