Package com.google.gerrit.client

Examples of com.google.gerrit.client.NotFoundScreen


  }

  @Override
  public void onFailure(final Throwable caught) {
    if (isNoSuchEntity(caught)) {
      Gerrit.display(screen.getToken(), new NotFoundScreen());
    } else {
      super.onFailure(caught);
    }
  }
View Full Code Here


  private void display(NativeList<ChangeList> result) {
    if (!mine && !hasChanges(result)) {
      // When no results are returned and the data is not for the
      // current user, the target user is presumed to not exist.
      Gerrit.display(getToken(), new NotFoundScreen());
      return;
    }

    ChangeList out = result.get(0);
    ChangeList in = result.get(1);
View Full Code Here

TOP

Related Classes of com.google.gerrit.client.NotFoundScreen

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.