1 package org.coolreader.crengine;
2 
3 public interface FileInfoChangeListener {
4 	/**
5 	 * Notify about file or directory change.
6 	 * @param object object which has been changed
7 	 * @param onlyProperties is true if only book info is changed, but no item count changed
8 	 */
onChange(FileInfo object, boolean onlyProperties)9 	void onChange(FileInfo object, boolean onlyProperties);
10 }
11