Package org.geomajas.widget.searchandfilter.command.dto

Examples of org.geomajas.widget.searchandfilter.command.dto.GetSearchFavouritesRequest


  private FavouritesCommService() {
  }

  public static void getSearchFavourites(final DataCallback<List<SearchFavourite>> onFinished) {
    GwtCommand command = new GwtCommand(GetSearchFavouritesRequest.COMMAND);
    command.setCommandRequest(new GetSearchFavouritesRequest());
    GwtCommandDispatcher.getInstance().execute(command, new CommandCallback() {
      public void execute(CommandResponse response) {
        if (response instanceof GetSearchFavouritesResponse) {
          GetSearchFavouritesResponse resp = (GetSearchFavouritesResponse) response;
          if (onFinished != null) {
View Full Code Here

TOP

Related Classes of org.geomajas.widget.searchandfilter.command.dto.GetSearchFavouritesRequest

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.