Interface IEdiTableModel

  • All Superinterfaces:
    javax.swing.table.TableModel

    public interface IEdiTableModel
    extends javax.swing.table.TableModel
    TablaModel editable.

    Or said of another form an IEdiTableModel.

    Author:
    Javier Paniza
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void addRow()
      Add row at end.
      void insertRow​(int row)
      Insert a row in indicated position.
      void removeRow​(int row)
      Remove the row from indicated position.
      void removeRows​(int[] filas)
      Remove rows from indicated positions.
      • Methods inherited from interface javax.swing.table.TableModel

        addTableModelListener, getColumnClass, getColumnCount, getColumnName, getRowCount, getValueAt, isCellEditable, removeTableModelListener, setValueAt
    • Method Detail

      • addRow

        void addRow()
        Add row at end.
      • insertRow

        void insertRow​(int row)
        Insert a row in indicated position.
      • removeRow

        void removeRow​(int row)
        Remove the row from indicated position.
      • removeRows

        void removeRows​(int[] filas)
        Remove rows from indicated positions.