Project

General

Profile

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

    
10
package eu.etaxonomy.taxeditor.annotatedlineeditor;
11

    
12

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