Package org.onemind.swingweb.console.ComponentTreeNodeCreator

Examples of org.onemind.swingweb.console.ComponentTreeNodeCreator.ComponentTreeNode


    /**
     * {@inheritDoc}
     */
    public void valueChanged(TreeSelectionEvent e)
    {
        ComponentTreeNode node = (ComponentTreeNode) e.getPath().getLastPathComponent();
        if (node != null)
        {
            Component com = node.getComponent();
            Map info = new LinkedHashMap();
            info.put("Component toString()", com.toString());
            info.put("Component class", com.getClass());
            info.put("Component name", com.getName());
            info.put("Component bounds", com.getBounds());
View Full Code Here

TOP

Related Classes of org.onemind.swingweb.console.ComponentTreeNodeCreator.ComponentTreeNode

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.