001    package com.google.gwt.maps.client.events.radius;
002    
003    import com.google.gwt.ajaxloader.client.Properties;
004    import com.google.gwt.maps.client.events.MapEventFormatter;
005    
006    public class RadiusChangeEventFormatter implements MapEventFormatter<RadiusChangeMapEvent> {
007    
008      @Override
009      public RadiusChangeMapEvent createEvent(Properties properties) {
010        return new RadiusChangeMapEvent(properties);
011      }
012    
013    }