org.eclipse.swt.widgets.List.deselect()方法的使用及代码示例

x33g5p2x  于2022-01-23 转载在 其他  
字(4.7k)|赞(0)|评价(0)|浏览(143)

本文整理了Java中org.eclipse.swt.widgets.List.deselect()方法的一些代码示例,展示了List.deselect()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。List.deselect()方法的具体详情如下:
包路径:org.eclipse.swt.widgets.List
类名称:List
方法名:deselect

List.deselect介绍

[英]Deselects the item at the given zero-relative index in the receiver. If the item at the index was already deselected, it remains deselected. Indices that are out of range are ignored.
[中]取消选择接收器中给定零相对索引处的项目。如果已取消选择索引中的项,则该项仍保持取消选择状态。将忽略超出范围的索引。

代码示例

代码示例来源:origin: org.eclipse/org.eclipse.wst.xsd.ui

/**
 * Deselects the item at the given zero-relative index in the receiver's 
 * list.  If the item at the index was already deselected, it remains
 * deselected. Indices that are out of range are ignored.
 *
 * @param index the index of the item to deselect
 *
 * @exception org.eclipse.swt.SWTException <ul>
 *    <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
 *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
 * </ul>
 */
public void deselect (int index) {
 checkWidget ();
 list.deselect (index);
}
/**

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.swt.win32.win32.x86

/**
 * Deselects the item at the given zero-relative index in the receiver's
 * list.  If the item at the index was already deselected, it remains
 * deselected. Indices that are out of range are ignored.
 *
 * @param index the index of the item to deselect
 *
 * @exception SWTException <ul>
 *    <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
 *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
 * </ul>
 */
public void deselect (int index) {
  checkWidget ();
  if (0 <= index && index < list.getItemCount () &&
      index == list.getSelectionIndex() &&
      text.getText().equals(list.getItem(index))) {
    text.setText("");  //$NON-NLS-1$
    list.deselect (index);
  }
}
/**

代码示例来源:origin: org.eclipse.swt.cocoa.macosx/x86_64

/**
 * Deselects the item at the given zero-relative index in the receiver's 
 * list.  If the item at the index was already deselected, it remains
 * deselected. Indices that are out of range are ignored.
 *
 * @param index the index of the item to deselect
 *
 * @exception SWTException <ul>
 *    <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
 *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
 * </ul>
 */
public void deselect (int index) {
  checkWidget ();
  if (0 <= index && index < list.getItemCount () &&
      index == list.getSelectionIndex() && 
      text.getText().equals(list.getItem(index))) {
    text.setText("");  //$NON-NLS-1$
    list.deselect (index);
  }
}
/**

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc

/**
 * Deselects the item at the given zero-relative index in the receiver's
 * list.  If the item at the index was already deselected, it remains
 * deselected. Indices that are out of range are ignored.
 *
 * @param index the index of the item to deselect
 *
 * @exception SWTException <ul>
 *    <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
 *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
 * </ul>
 */
public void deselect (int index) {
  checkWidget ();
  if (0 <= index && index < list.getItemCount () &&
      index == list.getSelectionIndex() &&
      text.getText().equals(list.getItem(index))) {
    text.setText("");  //$NON-NLS-1$
    list.deselect (index);
  }
}
/**

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc

/**
 * Deselects the item at the given zero-relative index in the receiver's
 * list.  If the item at the index was already deselected, it remains
 * deselected. Indices that are out of range are ignored.
 *
 * @param index the index of the item to deselect
 *
 * @exception SWTException <ul>
 *    <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
 *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
 * </ul>
 */
public void deselect (int index) {
  checkWidget ();
  if (0 <= index && index < list.getItemCount () &&
      index == list.getSelectionIndex() &&
      text.getText().equals(list.getItem(index))) {
    text.setText("");  //$NON-NLS-1$
    list.deselect (index);
  }
}
/**

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x

/**
 * Deselects the item at the given zero-relative index in the receiver's
 * list.  If the item at the index was already deselected, it remains
 * deselected. Indices that are out of range are ignored.
 *
 * @param index the index of the item to deselect
 *
 * @exception SWTException <ul>
 *    <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
 *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
 * </ul>
 */
public void deselect (int index) {
  checkWidget ();
  if (0 <= index && index < list.getItemCount () &&
      index == list.getSelectionIndex() &&
      text.getText().equals(list.getItem(index))) {
    text.setText("");  //$NON-NLS-1$
    list.deselect (index);
  }
}
/**

相关文章

微信公众号

最新文章

更多

List类方法