com.intellij.openapi.vfs.LocalFileOperationsHandler Java Examples

The following examples show how to use com.intellij.openapi.vfs.LocalFileOperationsHandler. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: TFSFileSystemListener.java    From azure-devops-intellij with MIT License 4 votes vote down vote up
@Override
public void afterDone(final ThrowableConsumer<LocalFileOperationsHandler, IOException> throwableConsumer) {
    // nothing to do
}
 
Example #2
Source File: Unity3dLocalFileSystemComponent.java    From consulo-unity3d with Apache License 2.0 4 votes vote down vote up
@Override
public void afterDone(ThrowableConsumer<LocalFileOperationsHandler, IOException> invoker)
{
}
 
Example #3
Source File: MockLocalFileSystem.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Override
public void registerAuxiliaryFileOperationsHandler(@Nonnull final LocalFileOperationsHandler handler) {
}
 
Example #4
Source File: MockLocalFileSystem.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Override
public void unregisterAuxiliaryFileOperationsHandler(@Nonnull final LocalFileOperationsHandler handler) {
}