Package org.springframework.roo.file.monitor.event

Examples of org.springframework.roo.file.monitor.event.FileOperation


        }
    }

    public void onFileEvent(final FileEvent fileEvent) {
        if (fileEvent.getFileDetails().getCanonicalPath().endsWith(DBRE_XML)) {
            final FileOperation operation = fileEvent.getOperation();
            if (operation == FileOperation.UPDATED
                    || operation == FileOperation.CREATED) {
                deserializeDatabase();
            }
        }
View Full Code Here

TOP

Related Classes of org.springframework.roo.file.monitor.event.FileOperation

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.