001    package com.google.gwt.maps.client.placeslib;
002    
003    import com.google.gwt.core.client.JsArray;
004    
005    public interface PlaceSearchHandler {
006    
007      public void onCallback(JsArray<PlaceResult> results, PlacesServiceStatus status); 
008      
009    }