All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.assertj.swing.driver.BasicJTableCellReader Maven / Gradle / Ivy

There is a newer version: 3.17.1
Show newest version
/**
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
 * the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
 * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations under the License.
 *
 * Copyright 2012-2015 the original author or authors.
 */
package org.assertj.swing.driver;

import static java.lang.String.valueOf;
import static org.assertj.core.util.Preconditions.checkNotNull;
import static org.assertj.swing.driver.ModelValueToString.asText;

import java.awt.Color;
import java.awt.Component;
import java.awt.Font;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.swing.JCheckBox;
import javax.swing.JComboBox;
import javax.swing.JLabel;
import javax.swing.JTable;

import org.assertj.swing.annotation.RunsInCurrentThread;
import org.assertj.swing.cell.JTableCellReader;

/**
 * Default implementation of {@link JTableCellReader}.
 *
 * @author Yvonne Wang
 * @author Alex Ruiz
 */
public class BasicJTableCellReader implements JTableCellReader {
  private final CellRendererReader rendererReader;
  private final BasicJComboBoxCellReader comboBoxCellReader = new BasicJComboBoxCellReader();

  /**
   * Creates a new {@link BasicJTableCellReader} that uses a {@link BasicCellRendererReader} to read the value from the
   * cell renderer component in a {@code JTable}.
   */
  public BasicJTableCellReader() {
    this(new BasicCellRendererReader());
  }

  /**
   * Creates a new {@link BasicJTableCellReader}.
   *
   * @param reader knows how to read values from the cell renderer component in a {@code JTable}.
   * @throws NullPointerException if {@code reader} is {@code null}.
   */
  public BasicJTableCellReader(@Nonnull CellRendererReader reader) {
    rendererReader = checkNotNull(reader);
  }

  /**
   * 

* Returns the internal value of a cell in a {@code JTable} as expected in a test. This method first tries to return * the value displayed in the {@code JTable}'s cell renderer. *

*
    *
  • if the renderer is a {@code JLabel}, this method returns its text
  • *
  • if the renderer is a {@code JComboBox}, this method returns the value of its selection as a {@code String}
  • *
  • if the renderer is a {@code JCheckBox}, this method returns whether it is selected or not
  • *
*

* If it fails reading the cell renderer, this method will get the value from the {@code toString} implementation of * the object stored in the {@code JTable}'s model at the specified indices. *

* *

* Note: This method is accessed in the current executing thread. Such thread may or may not be the event * dispatch thread (EDT). Client code must call this method from the EDT. *

* * @param table the given {@code JTable}. * @param row the row index of the cell. * @param column the column index of the cell. * @return the internal value of a cell in a {@code JTable} as expected in a test. */ @Override @RunsInCurrentThread public @Nullable String valueAt(@Nonnull JTable table, int row, int column) { Component c = cellRendererIn(table, row, column); String value = (c != null) ? rendererReader.valueFrom(c) : null; if (value != null) { return value; } if (c instanceof JLabel) { return ((JLabel) c).getText(); } if (c instanceof JCheckBox) { return valueOf(((JCheckBox) c).isSelected()); } if (c instanceof JComboBox) { return valueAsText((JComboBox) c); } return asText(table.getValueAt(row, column)); } private @Nullable String valueAsText(@Nonnull JComboBox comboBox) { int selectedIndex = comboBox.getSelectedIndex(); if (selectedIndex == -1) { return null; } return comboBoxCellReader.valueAt(comboBox, selectedIndex); } /** *

* Returns the font of the cell renderer for the given {@code JTable} cell. *

* *

* Note: This method is accessed in the current executing thread. Such thread may or may not be the event * dispatch thread (EDT). Client code must call this method from the EDT. *

* * @param table the given {@code JTable}. * @param row the row index of the cell. * @param column the column index of the cell. * @return the font of the cell renderer for the given {@code JTable} cell. */ @Override @RunsInCurrentThread public @Nullable Font fontAt(@Nonnull JTable table, int row, int column) { Component c = cellRendererIn(table, row, column); return c != null ? c.getFont() : null; } /** *

* Returns the background color of the cell renderer for the given {@code JTable} cell. *

* * @param table the given {@code JTable}. * @param row the row index of the cell. * @param column the column index of the cell. * @return the background color of the cell renderer for the given {@code JTable} cell. */ @Override @RunsInCurrentThread public @Nullable Color backgroundAt(@Nonnull JTable table, int row, int column) { Component c = cellRendererIn(table, row, column); return c != null ? c.getBackground() : null; } /** *

* Returns the foreground color of the cell renderer for the given {@code JTable} cell. *

* *

* Note: This method is accessed in the current executing thread. Such thread may or may not be the event * dispatch thread (EDT). Client code must call this method from the EDT. *

* * @param table the given {@code JTable}. * @param row the row index of the cell. * @param column the column index of the cell. * @return the foreground color of the cell renderer for the given {@code JTable} cell. */ @Override @RunsInCurrentThread public @Nullable Color foregroundAt(@Nonnull JTable table, int row, int column) { Component c = cellRendererIn(table, row, column); return c != null ? c.getForeground() : null; } @RunsInCurrentThread private @Nullable Component cellRendererIn(final @Nonnull JTable table, final int row, final int column) { return table.prepareRenderer(table.getCellRenderer(row, column), row, column); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy