* does, this method also provides the listener with the initial version of
* the Layer and Cursor properties.
*/
public void addPropertyChangeListener(PropertyChangeListener pcl) {
super.addPropertyChangeListener(pcl);
pcl.propertyChange(new PropertyChangeEvent(this, LayersProperty, currentLayers, currentLayers));
pcl.propertyChange(new PropertyChangeEvent(this, CursorProperty, this.getCursor(), this.getCursor()));
pcl.propertyChange(new PropertyChangeEvent(this, BackgroundProperty, this.getBckgrnd(), this.getBckgrnd()));
}