Package org.auraframework.util

Examples of org.auraframework.util.FileChangeEvent


                // signal appropriate handlers
                if (!isDir) {
                    try {
                        if (kind == ENTRY_CREATE) {
                            listener.fileCreated(new FileChangeEvent(child));
                        }
                        else if (kind == ENTRY_MODIFY) {
                            listener.fileChanged(new FileChangeEvent(child));
                        }
                        else if (kind == ENTRY_DELETE) {
                            listener.fileDeleted(new FileChangeEvent(child));
                        }
                    } catch (Exception ex) {
                        LOG.info("Unable to signal source change due to exception: " + ex.getMessage());
                    }
                }
View Full Code Here

TOP

Related Classes of org.auraframework.util.FileChangeEvent

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.