Interface FileManagerExtensionHolder
-
- All Known Implementing Classes:
XmlRpcAgentFileManager
public interface FileManagerExtensionHolderRepresents the agent-side file manager extension holder. Extensions can be added along with the id, or root that defines what paths can be handled by the extension. The root should start with a '#'.- Since:
- 6.0
- Author:
- Maxim Podkolzine (maxim.podkolzine@jetbrains.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddHandler(String root, CustomFileHandler handler)Adds the custom handlervoidremoveHandler(String root)Removes the custom handler
-
-
-
Method Detail
-
addHandler
void addHandler(@NotNull String root, @NotNull CustomFileHandler handler)Adds the custom handler- Parameters:
root- the root (should start with a '#')handler- the handler
-
removeHandler
void removeHandler(@NotNull String root)Removes the custom handler- Parameters:
root- the root
-
-