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

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


      }
    });
  }

  public static void deleteSearchFavourite(SearchFavourite sf, final DataCallback<Boolean> onFinished) {
    DeleteSearchFavouriteRequest dsfr = new DeleteSearchFavouriteRequest();
    dsfr.setSearchFavouriteId(sf.getId());
    GwtCommand command = new GwtCommand(DeleteSearchFavouriteRequest.COMMAND);
    command.setCommandRequest(dsfr);
    GwtCommandDispatcher.getInstance().execute(command, new CommandCallback() {
      public void execute(CommandResponse response) {
        if (response instanceof SuccessCommandResponse) {
View Full Code Here

TOP

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

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.