View Javadoc

1   /*
2    *  File: IRowSorter.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  import java.util.Comparator;
14  
15  import de.jaret.util.misc.PropertyObservable;
16  
17  /***
18   * A comparator for IRow to be set on the table. It is a PropertyObeservable to allow the table to react on changes with
19   * a refresh.
20   * 
21   * @author Peter Kliem
22   * @version $Id: IRowSorter.java 179 2007-01-07 17:37:50Z olk $
23   */
24  public interface IRowSorter extends Comparator<IRow>, PropertyObservable {
25  }