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

com.zipwhip.events.Observable Maven / Gradle / Ivy

package com.zipwhip.events;

import com.zipwhip.lifecycle.Destroyable;

/**
 * Created by IntelliJ IDEA.
 * User: Michael
 * Date: 8/1/11
 * Time: 4:22 PM
 * 

* Something that can be observed */ public interface Observable extends Destroyable { /** * Add an observer to this object. * * @param observer the callback to add */ void addObserver(Observer observer); /** * Remove an observer from this object. * * @param observer the callback to remove */ void removeObserver(Observer observer); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy