public interface IndexChangedListener
Modifier and Type | Method and Description |
---|---|
void |
fileAdd(java.lang.String path,
java.lang.String analyzer)
A file is to be added to the index database
|
void |
fileAdded(java.lang.String path,
java.lang.String analyzer)
A file is to be added to the index database
|
void |
fileRemove(java.lang.String path)
A file is to be removed from the index database
|
void |
fileRemoved(java.lang.String path)
A file is to be removed from the index database
|
void |
fileUpdate(java.lang.String path)
A file is to be updated in the index database
|
void fileAdd(java.lang.String path, java.lang.String analyzer)
path
- The path to the file (absolute from source root)analyzer
- The analyzer being used to analyze the filevoid fileAdded(java.lang.String path, java.lang.String analyzer)
path
- The path to the file (absolute from source root)analyzer
- The analyzer being used to analyze the filevoid fileRemove(java.lang.String path)
path
- The path to the file (absolute from source root)void fileRemoved(java.lang.String path)
path
- The path to the file (absolute from source root)void fileUpdate(java.lang.String path)
path
- The path to the file (absolute from source root)