1 /* 2 * File: IRow.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 * Row interface for rows used with jaret table models. The unique id is <b>only</b> used for persisting view state 15 * information (a feature most users do appreciate). 16 * 17 * @author Peter Kliem 18 * @version $Id: IRow.java 179 2007-01-07 17:37:50Z olk $ 19 */ 20 public interface IRow { 21 /*** 22 * Used for storing the row height (identification purposes). 23 * 24 * @return a unique id 25 */ 26 String getId(); 27 }