/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2008 - 2009, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotoolkit.map; import java.beans.PropertyChangeEvent; import java.lang.ref.WeakReference; import java.util.ArrayList; import java.util.Collection; import java.util.EventObject; import org.geotoolkit.internal.ReferenceQueueConsumer; import org.apache.sis.util.Disposable; import org.geotoolkit.util.collection.CollectionChangeEvent; /** * Listener for MapLayer. This listener is for PropertyChanges or style change. * * @author Johann Sorel (Geomatys) * @module */ public interface LayerListener extends ItemListener { /** * Called when a change occurs in the layer style. */ void styleChange(MapLayer source,EventObject event); /** * Weak layer listener. Use it when you are not * sure that the listener will be correctly removed by your class. */ public static final class Weak extends WeakReference<LayerListener> implements LayerListener,Disposable{ private final Collection<MapLayer> sources = new ArrayList<MapLayer>(1); public Weak(final LayerListener ref) { this(null,ref); } public Weak(final MapLayer source, final LayerListener ref) { super(ref, ReferenceQueueConsumer.DEFAULT.queue); registerSource(source); } /** * Register this listener on the given source. */ public synchronized void registerSource(final MapLayer source){ if(source != null && !sources.contains(source)){ //register in the new source source.addLayerListener(this); this.sources.add(source); } } /** * Unregister this listener on the given source. */ public synchronized void unregisterSource(final MapLayer source){ sources.remove(source); source.removeLayerListener(this); } @Override public synchronized void dispose() { for(MapLayer source : sources){ source.removeLayerListener(this); } sources.clear(); } @Override public void propertyChange(final PropertyChangeEvent evt) { final LayerListener listener = get(); if (listener != null) { listener.propertyChange(evt); } //if the listener is null, that means we are in the reference queue and it will be disposed soon. } @Override public void styleChange(final MapLayer source, final EventObject event) { final LayerListener listener = get(); if (listener != null) { listener.styleChange(source,event); } //if the listener is null, that means we are in the reference queue and it will be disposed soon. } @Override public void itemChange(final CollectionChangeEvent<MapItem> event) { final LayerListener listener = get(); if (listener != null) { listener.itemChange(event); } //if the listener is null, that means we are in the reference queue and it will be disposed soon. } } }