/******************************************************************************* * Copyright (c) 2012 Michael Vorburger (http://www.vorburger.ch). * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html *******************************************************************************/ package ch.vorburger.xbindings; /** * Notifier of some change. * * @author Michael Vorburger */ public interface PropertyChangeNotifier { void addChangeListener(PropertyChangeListener cl); // TODO void removePropertyChangeListener(PropertyChangeListener listener); // TODO void removePropertyChangeListeners(); ? }