package org.jabref.collab; public interface FileUpdateListener { /** * The file has been updated. A new call will not result until the file has been modified again. */ void fileUpdated(); /** * The file does no longer exist. */ void fileRemoved(); }