1
2
3
4
5
6
7
8
9
10 package nl.tudelft.simulation.introspection.gui;
11
12 /***
13 * Declares standard methods of an ObjectJTable.
14 * <p>
15 * (c) copyright 2003-2004 <a href="http://www.simulation.tudelft.nl">Delft
16 * University of Technology </a>, the Netherlands. <br>
17 * See for project information <a
18 * href="http://www.simulation.tudelft.nl">www.simulation.tudelft.nl </a> <br>
19 * License of use: <a href="http://www.gnu.org/copyleft/gpl.html">General Public
20 * License (GPL) </a>, no warranty <br>
21 *
22 * @author <a
23 * href="http://web.eur.nl/fbk/dep/dep1/Introduction/Staff/People/Lang">Niels
24 * Lang </a><a
25 * href="http://www.tbm.tudelft.nl/webstaf/peterja/index.htm">Peter
26 * Jacobs </a>
27 * @version 1.1 Apr 15, 2004
28 * @since 1.4
29 */
30 public interface ObjectJTableInterface
31 {
32 /***
33 * @return Returns the introspecting table model
34 */
35 IntrospectingTableModelInterface getIntrospectingTableModel();
36 }