All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.mapway.ui.client.mvc.Observable Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
package cn.mapway.ui.client.mvc;

/**
 * 被监视的对象
 *
 * @author zhangjianshe
 */
public interface Observable {
    /**
     * 添加观察者
     *
     * @param obersver the obersver
     */
    void addObserver(Observer obersver);

    /**
     * 移除观察者列表
     *
     * @param observer the observer
     */
    void rmoveObserver(Observer observer);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy