Package org.apache.tools.ant.gui.event

Examples of org.apache.tools.ant.gui.event.DeleteElementEvent


                // Find the parent and remove the element.
                DOMNode parent = item.getParentNode();
                parent.removeChild(item);

                // Notify the tree the element was removed.
                DeleteElementEvent event = new DeleteElementEvent(
                    getContext(), (ACSElement) parent);
                getContext().getEventBus().postEvent(event);
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.tools.ant.gui.event.DeleteElementEvent

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.