Project

General

Profile

Download (730 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 * 
3
 */
4
package eu.etaxonomy.taxeditor.singlesource.org.eclipse.jface.window;
5

    
6
import javax.naming.OperationNotSupportedException;
7

    
8
import org.eclipse.swt.SWT;
9
import org.eclipse.swt.widgets.Control;
10
import org.eclipse.swt.widgets.ToolTip;
11

    
12
/**
13
 * @author lusu
14
 *
15
 */
16
public class ToolTipFacadeImpl extends ToolTip implements IToolTip {
17
	/**
18
	 * <p>Constructor for NameViewer.</p>
19
	 *
20
	 * @param parent a {@link org.eclipse.swt.widgets.Composite} object.
21
	 */
22
	public ToolTipFacadeImpl(Control control) throws OperationNotSupportedException {
23
		super(control.getShell(), SWT.ICON_INFORMATION);
24
	}
25
	
26
	@Override
27
	public void setRespectDisplayBounds(boolean respectDisplayBounds)
28
			throws OperationNotSupportedException {
29
	}
30

    
31
}
    (1-1/1)