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-2025 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/dsol/manual/" target="_blank">DSOL Manual</a>. The DSOL
12 * project is distributed under a three-clause BSD-style license, which can be found at
13 * <a href="https://simulation.tudelft.nl/dsol/docs/latest/license.html" target="_blank">DSOL License</a>.
14 * </p>
15 * @author <a href="https://github.com/averbraeck" target="_blank">Alexander Verbraeck</a>
16 */
17 public interface EventContext extends ContextInterface, EventContextInterface, EventProducer
18 {
19 // tagging interface
20 }