Package org.geomajas.puregwt.client.map.event

Examples of org.geomajas.puregwt.client.map.event.FeatureSelectedEvent


  }

  public boolean selectFeature(Feature feature) {
    if (!selection.containsValue(feature) && feature.getLayer() == this) {
      selection.put(feature.getId(), feature);
      eventBus.fireEvent(new FeatureSelectedEvent(feature));
    }
    return false;
  }
View Full Code Here

TOP

Related Classes of org.geomajas.puregwt.client.map.event.FeatureSelectedEvent

Copyright © 2018 www.massapicom. 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.