Package org.locationtech.udig.legend.internal

Source Code of org.locationtech.udig.legend.internal.RemoveMapgraphicLayerInterceptor

/* uDig - User Friendly Desktop Internet GIS client
* http://udig.refractions.net
* (C) 2004, Refractions Research Inc.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* (http://www.eclipse.org/legal/epl-v10.html), and the Refractions BSD
* License v1.0 (http://udig.refractions.net/files/bsd3-v10.html).
*/
package org.locationtech.udig.legend.internal;

import org.eclipse.emf.common.notify.impl.AdapterImpl;

import org.locationtech.udig.mapgraphic.MapGraphic;
import org.locationtech.udig.project.interceptor.LayerInterceptor;
import org.locationtech.udig.project.internal.Layer;
import org.locationtech.udig.project.internal.impl.MapImpl;

/**
* Layer interceptor that removes the listener
* added for the legend layer that refreshes the legend.
*
* @author egouge
*
*/
public class RemoveMapgraphicLayerInterceptor implements LayerInterceptor {

  @Override
  public void run(Layer layer) {
   
    if (layer.hasResource(MapGraphic.class)){
      AdapterImpl x = (AdapterImpl) layer.getBlackboard().get(AddMapgraphicLayerInterceptor.MAPGRAPHIC_ADAPTER_KEY);
      if (x != null){
        ((MapImpl)layer.getMap()).removeDeepAdapter(x);
      }
    }
  }

}
TOP

Related Classes of org.locationtech.udig.legend.internal.RemoveMapgraphicLayerInterceptor

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.