View Javadoc

1   /*
2    * @(#) ObjectTableInterface.java Apr 15, 2004
3    * 
4    * Copyright (c) 2003 Delft University of Technology Jaffalaan 5, 2628 BX Delft,
5    * the Netherlands All rights reserved.
6    * 
7    * This software is proprietary information of Delft University of Technology
8    * The code is published under the General Public License
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  }