com.google.gwt.user.client.ui.Tree.moveFocus()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(1.8k)|赞(0)|评价(0)|浏览(118)

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

Tree.moveFocus介绍

[英]Move the tree focus to the specified selected item.
[中]将树焦点移动到指定的选定项。

代码示例

代码示例来源:origin: com.google.gwt/gwt-servlet

private void onSelection(TreeItem item, boolean fireEvents, boolean moveFocus) {
 // 'root' isn't a real item, so don't let it be selected
 // (some cases in the keyboard handler will try to do this)
 if (item == root) {
  return;
 }
 if (curSelection != null) {
  curSelection.setSelected(false);
 }
 curSelection = item;
 if (curSelection != null) {
  if (moveFocus) {
   moveFocus();
  }
  // Select the item and fire the selection event.
  curSelection.setSelected(true);
  if (fireEvents) {
   SelectionEvent.fire(this, curSelection);
  }
 }
}

代码示例来源:origin: net.wetheinter/gwt-user

private void onSelection(TreeItem item, boolean fireEvents, boolean moveFocus) {
 // 'root' isn't a real item, so don't let it be selected
 // (some cases in the keyboard handler will try to do this)
 if (item == root) {
  return;
 }
 if (curSelection != null) {
  curSelection.setSelected(false);
 }
 curSelection = item;
 if (curSelection != null) {
  if (moveFocus) {
   moveFocus();
  }
  // Select the item and fire the selection event.
  curSelection.setSelected(true);
  if (fireEvents) {
   SelectionEvent.fire(this, curSelection);
  }
 }
}

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

private void onSelection(TreeItem item, boolean fireEvents, boolean moveFocus) {
 // 'root' isn't a real item, so don't let it be selected
 // (some cases in the keyboard handler will try to do this)
 if (item == root) {
  return;
 }
 if (curSelection != null) {
  curSelection.setSelected(false);
 }
 curSelection = item;
 if (curSelection != null) {
  if (moveFocus) {
   moveFocus();
  }
  // Select the item and fire the selection event.
  curSelection.setSelected(true);
  if (fireEvents) {
   SelectionEvent.fire(this, curSelection);
  }
 }
}

相关文章