Class SkewTReadoutTable.RowEntry

java.lang.Object
ucar.unidata.view.sounding.SkewTReadoutTable.RowEntry
Direct Known Subclasses:
SkewTReadoutTable.RealRowEntry, SkewTReadoutTable.SeparatorRowEntry
Enclosing class:
SkewTReadoutTable

protected abstract class SkewTReadoutTable.RowEntry extends Object
Provides support for a row in the table model.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected int
    The index of the row.
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    protected
    Constructs from nothing.
  • Method Summary

    Modifier and Type
    Method
    Description
    abstract Object
    getValueAt(int column)
    Returns the value of the cell at a given column.
    void
    setRowIndex(int rowIndex)
    Constructs from a row index.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • rowIndex

      protected int rowIndex
      The index of the row.
  • Constructor Details

    • RowEntry

      protected RowEntry()
      Constructs from nothing.
  • Method Details

    • setRowIndex

      public void setRowIndex(int rowIndex)
      Constructs from a row index.
      Parameters:
      rowIndex - The row index.
    • getValueAt

      public abstract Object getValueAt(int column)
      Returns the value of the cell at a given column.
      Parameters:
      column - The column index.
      Returns:
      The value of the given cell.