View Javadoc

1   /*
2    *  File: IHierarchicalJaretTableModel.java 
3    *  Copyright (c) 2004-2007  Peter Kliem (Peter.Kliem@jaret.de)
4    *  A commercial license is available, see http://www.jaret.de.
5    *
6    * All rights reserved. This program and the accompanying materials
7    * are made available under the terms of the Common Public License v1.0
8    * which accompanies this distribution, and is available at
9    * http://www.eclipse.org/legal/cpl-v10.html
10   */
11  package de.jaret.util.ui.table.model;
12  
13  /***
14   * Hierarchical model for the jaret table.
15   * 
16   * @author Peter Kliem
17   * @version $Id: IHierarchicalJaretTableModel.java 175 2007-01-05 00:01:18Z olk $
18   */
19  public interface IHierarchicalJaretTableModel {
20      /***
21       * Retrieve the root node.
22       * 
23       * @return the root node
24       */
25      ITableNode getRootNode();
26  }