name.remal.collections.ObservableCollection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
Java & Kotlin tools: common
package name.remal.collections;
import org.jetbrains.annotations.NotNull;
import java.util.Collection;
public interface ObservableCollection extends Collection {
@NotNull
HandlerRegistration registerElementAddedHandler(@NotNull ElementAddedHandler handler);
@NotNull
HandlerRegistration registerElementRemovedHandler(@NotNull ElementRemovedHandler handler);
}