Project

General

Profile

Download (757 Bytes) Statistics
| Branch: | Tag: | Revision:
1
// $Id$
2
/**
3
* Copyright (C) 2007 EDIT
4
* European Distributed Institute of Taxonomy 
5
* http://www.e-taxonomy.eu
6
* 
7
* The contents of this file are subject to the Mozilla Public License Version 1.1
8
* See LICENSE.TXT at the top of this package for the full license terms.
9
*/
10

    
11
package eu.etaxonomy.taxeditor.annotatedlineeditor;
12

    
13

    
14
/**
15
 * Every line in a <code>LineSelectionViewer</code> has an object associated with it. Classes
16
 * implementing this interface retrieve a line's object.
17
 *
18
 * @author p.ciardelli
19
 * @created 03.07.2009
20
 * @version 1.0
21
 */
22
public interface ILineSelectionSource {
23
	
24
	/**
25
	 * <p>getSelectedObjectAtLine</p>
26
	 *
27
	 * @param line a int.
28
	 * @return a {@link java.lang.Object} object.
29
	 */
30
	Object getSelectedObjectAtLine(int line);
31
}
(11-11/16)