001package org.intellimate.izou.system.file;
002
003import org.intellimate.izou.identification.Identifiable;
004
005/**
006 * Interface for system-manager. System-manager calls on reloadFile when it detects a change in the file. Any class
007 * implementing this method can be used by the system-manager.
008 */
009public interface ReloadableFile extends Identifiable{
010
011    /**
012     * Method that system-manager uses to update file when it has detected a change in it.
013     * @param eventType the Type which caused the reloading
014     */
015    public void reloadFile(String eventType);
016}