创建控件树节点结构 : 树显示 « SWT « Java 教程

En
Java 教程
1. 语言基础
2. 数据类型
3. 操作符
4. 流程控制
5. 类定义
6. 开发相关
7. 反射
8. 正则表达式
9. 集合
10. 线
11. 文件
12. 泛型
13. 本土化
14. Swing
15. Swing事件
16. 二维图形
17. SWT
18. SWT 二维图形
19. 网络
20. 数据库
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web服务SOA
27. EJB3
28. Spring
29. PDF
30. 电子邮件
31. 基于J2ME
32. J2EE应用
33. XML
34. 设计模式
35. 日志
36. 安全
37. Apache工具
38. 蚂蚁编译
39. JUnit单元测试
Java
Java 教程 » SWT » 树显示 
17. 62. 4. 创建控件树节点结构
import java.util.Vector;

import org.eclipse.jface.viewers.ILabelProvider;
import org.eclipse.jface.viewers.ILabelProviderListener;
import org.eclipse.jface.viewers.ITreeContentProvider;
import org.eclipse.jface.viewers.TreeViewer;
import org.eclipse.jface.viewers.Viewer;
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Tree;
import org.eclipse.swt.widgets.TreeItem;

public class TreeViewBasedOnNode {
  static Display display = new Display();

  static Shell shell = new Shell(display);

  static final Tree tree = new Tree(shell, SWT.BORDER);

  static Vector nodes = new Vector();

  public static void traditional() {
    for (int i = 0; nodes != null && i < nodes.size(); i++) {
      Node node = (Nodenodes.elementAt(i);
      addNode(null, node);
    }
  }

  private static void addNode(TreeItem parentItem, Node node) {
    TreeItem item = null;
    if (parentItem == null)
      item = new TreeItem(tree, SWT.NONE);
    else
      item = new TreeItem(parentItem, SWT.NONE);

    item.setText(node.getName());

    Vector subs = node.getSubCategories();
    for (int i = 0; subs != null && i < subs.size(); i++)
      addNode(item, (Nodesubs.elementAt(i));
  }

  public static void main(String[] args) {
    Node category = new Node("A"null);
    nodes.add(category);

    category = new Node("a1", category);
    new Node("a11", category);
    new Node("a12", category);

    category = new Node("B"null);
    nodes.add(category);

    new Node("b1", category);
    new Node("b2", category);

    TreeViewer treeViewer = new TreeViewer(tree);

    treeViewer.setContentProvider(new MyTreeContentProvider());

    treeViewer.setLabelProvider(new MyLabelProvider());
    treeViewer.setInput(nodes);
    tree.setSize(300200);
    shell.setSize(300200);

    shell.open();

    while (!shell.isDisposed()) {
      if (!display.readAndDispatch()) {
        display.sleep();
      }
    }
    display.dispose();
  }

}
class MyLabelProvider implements ILabelProvider {
  public String getText(Object element) {
    return ((Nodeelement).getName();
  }

  public Image getImage(Object arg0) {
    return null;
  }

  public void addListener(ILabelProviderListener arg0) {
  }

  public void dispose() {
  }

  public boolean isLabelProperty(Object arg0, String arg1) {
    return false;
  }

  public void removeListener(ILabelProviderListener arg0) {
  }
}


class MyTreeContentProvider implements ITreeContentProvider{
  public Object[] getChildren(Object parentElement) {
    Vector subcats = ((NodeparentElement).getSubCategories();
    return subcats == null new Object[0: subcats.toArray();
  }

  public Object getParent(Object element) {
    return ((Nodeelement).getParent();
  }

  public boolean hasChildren(Object element) {
    return ((Nodeelement).getSubCategories() != null;
  }

  public Object[] getElements(Object inputElement) {
    if (inputElement != null && inputElement instanceof Vector) {
      return ((VectorinputElement).toArray();
    }
    return new Object[0];
  }

  public void dispose() {
  }

  public void inputChanged(Viewer viewer, Object oldInput, Object newInput) {
  }
}


class Node {
  private String name;

  private Vector subCategories;

  private Node parent;

  public Node(String name, Node parent) {
    this.name = name;
    this.parent = parent;
    if (parent != null)
      parent.addSubCategory(this);
  }

  public Vector getSubCategories() {
    return subCategories;
  }

  private void addSubCategory(Node subcategory) {
    if (subCategories == null)
      subCategories = new Vector();
    if (!subCategories.contains(subcategory))
      subCategories.add(subcategory);
  }

  public String getName() {
    return name;
  }

  public Node getParent() {
    return parent;
  }
}
17. 62. 树显示
17. 62. 1. 树视图
17. 62. 2. 使用TreeViewer
17. 62. 3. 创建CheckBoxTreeView和CheckStateListener
17. 62. 4. 创建控件树节点结构
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.