package nl.tudelft.simulation.naming.context; /** * Contextualized indicates that an object has (access to) a context. *
* Copyright (c) 2021-2021 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See * for project information DSOL Manual. The DSOL * project is distributed under a three-clause BSD-style license, which can be found at * DSOL License. *
* @author Alexander Verbraeck */ public interface Contextualized { /** * Return the context. * @return ContextInterface; the context */ ContextInterface getContext(); }