Package edu.hawaii.ics.csdl.jupiter.ui.view.table

Examples of edu.hawaii.ics.csdl.jupiter.ui.view.table.ReviewTableView


  /**
   * Updates the next and previous icon.
   */
  public static void updateNextPreviousIcon() {
    ReviewTableView tableView = ReviewTableView.getActiveView();
    if (tableView != null) {
      Table table = tableView.getTable();
      int index = table.getSelectionIndex();
      if (index != -1) {
        int length = table.getItemCount();
        NEXT.setEnabled(index < length - 1);
        PREVIOUS.setEnabled(index > 0);
View Full Code Here


      }
      else if (this.activeTabNameKey.equals(ResourceBundleKey.PHASE_REWORK)) {
        String reworkTitle = reviewIssue.getReviewer() + " : " + summaryText.getText();
        title = reworkTitle;
      }
      ReviewTableView tableView = ReviewTableView.getActiveView();
      if (tableView == null) {
        tableView = ReviewTableView.bringViewToTop();
      }
    }
    this.setContentDescription(title);
View Full Code Here

TOP

Related Classes of edu.hawaii.ics.csdl.jupiter.ui.view.table.ReviewTableView

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.