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