Package com.google.testing.testify.risk.frontend.client.view.widgets

Examples of com.google.testing.testify.risk.frontend.client.view.widgets.NavigationLink


  /**
   * Switches the current view to the provided Testify application page.
   */
  public void switchToPage(NavigationLink link, String pageData) {
    NavigationLink oldLink = currentLink;
    this.currentLink = link;

    if (oldLink != null) {
      oldLink.unSelect();
    }
    link.select();

    TaPagePresenter presenter = link.getPresenter();
    if (presenter != null) {
View Full Code Here

TOP

Related Classes of com.google.testing.testify.risk.frontend.client.view.widgets.NavigationLink

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.