Project

General

Profile

Download (1.19 KB) 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.singlesource.editor.name.container;
11

    
12
import java.rmi.server.Operation;
13

    
14
import javax.naming.OperationNotSupportedException;
15

    
16
import org.apache.log4j.Logger;
17
import org.eclipse.ui.forms.IManagedForm;
18

    
19
/**
20
 * Checks whether the ScrolledForm a TextViewer is on needs to be
21
 *  redrawn because of a new line break or the removal of an existing
22
 *  one ...
23
 *  <p>
24
 *  ... in theory, anyway. Until I figure out how to detect a word wrap,
25
 *   the ScrolledForm is redrawn with every modify event.
26
 *
27
 * @author p.ciardelli
28
 * @created 19.05.2008
29
 * @version 1.0
30
 */
31
public class LineWrapSupportFacadeImpl implements ILineWrapSupport {
32
	private static final Logger logger = Logger
33
			.getLogger(LineWrapSupportFacadeImpl.class);
34
	
35
	public LineWrapSupportFacadeImpl(NameViewerFacade viewer, IManagedForm form) throws OperationNotSupportedException {
36
		throw new OperationNotSupportedException("LineWrapSupport not supported");
37
	}
38
	
39
}
(3-3/4)