Package de.mhus.lib.core.util
Interface CompareDir.Listener
-
- Enclosing class:
- CompareDir
public static interface CompareDir.Listener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancreateObject(String path, CompareDirEntry curVal)booleandeleteObject(String path, CompareDirEntry lastVal)booleanfinish(TreeMap<String,CompareDirEntry> pCurrent, TreeMap<String,CompareDirEntry> pLast)voidstart(TreeMap<String,CompareDirEntry> pCurrent, TreeMap<String,CompareDirEntry> pLast)booleanupdateObject(String path, CompareDirEntry curVal, CompareDirEntry lastVal)
-
-
-
Method Detail
-
start
void start(TreeMap<String,CompareDirEntry> pCurrent, TreeMap<String,CompareDirEntry> pLast)
-
finish
boolean finish(TreeMap<String,CompareDirEntry> pCurrent, TreeMap<String,CompareDirEntry> pLast)
-
updateObject
boolean updateObject(String path, CompareDirEntry curVal, CompareDirEntry lastVal)
-
createObject
boolean createObject(String path, CompareDirEntry curVal)
-
deleteObject
boolean deleteObject(String path, CompareDirEntry lastVal)
-
-