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

org.opentcs.operationsdesk.transport.UneditableTableModel Maven / Gradle / Ivy

/**
 * Copyright (c) The openTCS Authors.
 *
 * This program is free software and subject to the MIT license. (For details,
 * see the licensing information (LICENSE.txt) you should have received with
 * this copy of the software.)
 */
package org.opentcs.operationsdesk.transport;

import javax.swing.table.DefaultTableModel;

/**
 * A table model in which each cell is uneditable.
 */
public class UneditableTableModel
    extends
      DefaultTableModel {

  /**
   * Creates a new instance.
   */
  public UneditableTableModel() {
  }

  @Override
  public boolean isCellEditable(int row, int column) {
    return false;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy