Package com.intellij.openapi.vfs.newvfs

Examples of com.intellij.openapi.vfs.newvfs.BulkFileListener


                MergingUpdateQueue.ANY_COMPONENT);
    }

    public synchronized void start() {
        final MessageBusConnection myBusConnection = project.getMessageBus().connect(myQueue);
        myBusConnection.subscribe(VirtualFileManager.VFS_CHANGES, new BulkFileListener() {
            public void before(List<? extends VFileEvent> vFileEvents) {
            }

            public void after(List<? extends VFileEvent> vFileEvents) {
                for (VFileEvent vFileEvent : vFileEvents) {
View Full Code Here

TOP

Related Classes of com.intellij.openapi.vfs.newvfs.BulkFileListener

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.