1 package org.djutils.event; 2 3 /** 4 * TimedEventTypeInterface is a tagging interface for the TimedEventType. At this moment, a TimedEventType does not implement 5 * any extra methods. <br> 6 * <br> 7 * Copyright (c) 2020-2022 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See 8 * for project information <a href="https://djutils.org" target="_blank"> https://djutils.org</a>. The DJUTILS project is 9 * distributed under a three-clause BSD-style license, which can be found at 10 * <a href="https://djutils.org/docs/license.html" target="_blank"> https://djutils.org/docs/license.html</a>. <br> 11 * @author <a href="https://www.tudelft.nl/averbraeck">Alexander Verbraeck</a> 12 * @author <a href="https://www.tudelft.nl/pknoppers">Peter Knoppers</a> 13 */ 14 public interface TimedEventTypeInterface extends EventTypeInterface 15 { 16 // no extra methods defined at the moment 17 }