Package org.mypj.tele.client.remote

Examples of org.mypj.tele.client.remote.SearchSvrAsync


    initTable(null);
    mainPanel.add(table);
    initWidget(mainPanel)
  }
  protected void doAsync(String filter) {
    SearchSvrAsync searchSvrService = GWT.create(SearchSvr.class);
    searchSvrService.searchPersons(filter,new AsyncCallback<PersonInfo[]>() {
     
      @Override
      public void onSuccess(PersonInfo[] result) {
        initTable(result);
      }
View Full Code Here

TOP

Related Classes of org.mypj.tele.client.remote.SearchSvrAsync

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.