Package org.jayasoft.woj.tools.ui.download.infopanel

Examples of org.jayasoft.woj.tools.ui.download.infopanel.DescriptorInfoPanel


    splitPane.setRightComponent(createDescritporInfoPanel());
    return splitPane;
  }

  private Component createDescritporInfoPanel() {
    _descriptorInfoPanel = new DescriptorInfoPanel();
    _descriptorTree.addTreeSelectionListener(new TreeSelectionListener(){
      public void valueChanged(TreeSelectionEvent e) {
        TreePath path = e.getNewLeadSelectionPath();
        if (path != null) {
          DefaultMutableTreeNode selectedObject = (DefaultMutableTreeNode) path.getLastPathComponent();
View Full Code Here

TOP

Related Classes of org.jayasoft.woj.tools.ui.download.infopanel.DescriptorInfoPanel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.