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

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


         * @param event Event to post.
         * @return true if event should be propogated, false if
         * it should be cancelled.
         */
        public boolean eventPosted(EventObject event) {
            AntEvent e = (AntEvent) event;
            Command cmd = e.createDefaultCmd();
            cmd.run();
            return cmd instanceof NoOpCmd;
        }
View Full Code Here

TOP

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

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.