package org.opentrafficsim.graphs; import javax.swing.JFrame; /** *

* Copyright (c) 2013-2015 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
* BSD-style license. See OpenTrafficSim License. *

* $LastChangedDate: 2015-07-26 01:01:13 +0200 (Sun, 26 Jul 2015) $, @version $Revision: 1155 $, by $Author: averbraeck $, * initial version 8 dec. 2014
* @author Peter Knoppers */ public interface MultipleViewerChart { /** * Create/add a viewer for the data of the graph. * @return JFrame; the JFrame that holds the visualization of the data */ JFrame addViewer(); }