本文整理了Java中org.eclipse.swt.widgets.Table.removeSelectionListener()
方法的一些代码示例,展示了Table.removeSelectionListener()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Table.removeSelectionListener()
方法的具体详情如下:
包路径:org.eclipse.swt.widgets.Table
类名称:Table
方法名:removeSelectionListener
[英]Removes the listener from the collection of listeners who will be notified when the user changes the receiver's selection.
[中]从侦听器集合中删除侦听器,当用户更改接收方的选择时,将通知这些侦听器。
代码示例来源:origin: org.eclipse.platform/org.eclipse.ui.workbench
/**
* Removes a selection listener from the list.
*
* @param listener
* the selection listener to be removed.
*/
public void removeSelectionListener(SelectionListener listener) {
fList.removeSelectionListener(listener);
}
代码示例来源:origin: org.eclipse.platform/org.eclipse.jface.text
@Override
public void disposeInformationControl() {
synchronized (fThreadAccess) {
if (fThread != null) {
fThread.interrupt();
fThread= null;
}
}
if (fProposalTable != null && !fProposalTable.isDisposed()) {
fProposalTable.removeSelectionListener(fSelectionListener);
fProposalTable= null;
}
super.disposeInformationControl();
}
代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jface.text
@Override
public void disposeInformationControl() {
synchronized (fThreadAccess) {
if (fThread != null) {
fThread.interrupt();
fThread= null;
}
}
if (fProposalTable != null && !fProposalTable.isDisposed()) {
fProposalTable.removeSelectionListener(fSelectionListener);
fProposalTable= null;
}
super.disposeInformationControl();
}
代码示例来源:origin: org.eclipse.platform/org.eclipse.jface.text
@Override
public void disposeInformationControl() {
if (fTimer !=null) {
fTimer.terminate();
fTimer= null;
}
fProposal= null;
fInformation= null;
if (fProposalTable != null && !fProposalTable.isDisposed()) {
fProposalTable.removeSelectionListener(fSelectionListener);
fProposalTable= null;
}
super.disposeInformationControl();
}
代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jface.text
@Override
public void disposeInformationControl() {
if (fTimer !=null) {
fTimer.terminate();
fTimer= null;
}
fProposal= null;
fInformation= null;
if (fProposalTable != null && !fProposalTable.isDisposed()) {
fProposalTable.removeSelectionListener(fSelectionListener);
fProposalTable= null;
}
super.disposeInformationControl();
}
内容来源于网络,如有侵权,请联系作者删除!