方法showSelection()未定义

时间:2017-05-23 06:43:40

标签: java eclipse swt eclipse-rap

我正在使用RWT网络应用程序,我需要选择一段文字并滚动到它。我用:

import org.eclipse.swt.widgets.Text;
...
Text multiLineText;
...
multiLineText.setFocus();
multiLineText.setSelection(point);

但在这种情况下,如果选定的文本不在文本控件中(更低或更高),我需要滚动到它。

我尝试添加一行代码:

multiLineText.showSelection();

但我的编译器说方法showSelection()未定义类型Text 。文档说,这个方法是定义的:

http://help.eclipse.org/luna/index.jsp?topic=%2Forg.eclipse.platform.doc.isv%2Freference%2Fapi%2Forg%2Feclipse%2Fswt%2Fwidgets%2FText.html

0 个答案:

没有答案