broken link

This commit is contained in:
Anna Bulenkova 2015-05-19 08:24:52 +02:00
parent 944d6eb601
commit be408c0897

View File

@ -54,7 +54,9 @@ To provide an alternative file system implementation (for example, an FTP file s
[VirtualFileSystem](https://github.com/JetBrains/intellij-community/blob/master/platform/core-api/src/com/intellij/openapi/vfs/VirtualFileSystem.java)
class (most likely you'll also need to implement ```VirtualFile```), and register your implementation as an
[application component](http://www.jetbrains.org/intellij/sdk/docs/plugin_components.html).
To hook into operations performed in the local file system (for example, if you deal with development of a version control system integration that needs custom rename/move handling), implement the [LocalFileOperationsHandler] (https://github.com/JetBrains/intellij-community/blob/master/platform/platform-api/src/com/intellij/openapi/vfs/LocalFileOperationsHandler.java) interface and register it through the```LocalFileSystem.registerAuxiliaryFileOperationsHandler``` method.
To hook into operations performed in the local file system (for example, if you deal with development of a version control system integration that needs custom rename/move handling), implement the
[LocalFileOperationsHandler](https://github.com/JetBrains/intellij-community/blob/master/platform/platform-api/src/com/intellij/openapi/vfs/LocalFileOperationsHandler.java)
interface and register it through the```LocalFileSystem.registerAuxiliaryFileOperationsHandler``` method.
#### What are the rules for working with it?