Package com.google.api.explorer.client.navigation

Examples of com.google.api.explorer.client.navigation.MethodEntry


   */
  private void populateMethodEntry(final ApiMethod method, @Nullable String serviceTitle,
      final String prefix, EntryAggregatorView aggregator) {

    HasClickHandlers rowHandler = aggregator.addEntry(
        new MethodEntry(method.getId(), serviceTitle, method.getDescription()));
    rowHandler.addClickHandler(new ClickHandler() {
      @Override
      public void onClick(ClickEvent arg0) {
        presenter.handleClickMethod(prefix, method);
      }
View Full Code Here

TOP

Related Classes of com.google.api.explorer.client.navigation.MethodEntry

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.