package nl.tudelft.simulation.dsol.swing.gui.inputparameters; import nl.tudelft.simulation.dsol.model.inputparameters.InputParameter; /** * InputField for entering data.
*
* Copyright (c) 2003-2022 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See * for project information www.simulation.tudelft.nl. The * source code and binary code of this software is proprietary information of Delft University of Technology. * @author Alexander Verbraeck */ public interface InputField { /** @return the key of the field. */ String getKey(); /** @return the input parameter for the field. */ InputParameter getParameter(); }