Class IndexedMetaTableModel

    • Constructor Detail

      • IndexedMetaTableModel

        public IndexedMetaTableModel​(MetaTableModel backend)
    • Method Detail

      • mapRow

        protected abstract int mapRow​(int row)
      • isCellDataAttributesSupported

        public boolean isCellDataAttributesSupported()
        Description copied from interface: MetaTableModel
        Checks, whether cell-data attributes are supported by this tablemodel implementation.
        Specified by:
        isCellDataAttributesSupported in interface MetaTableModel
        Returns:
        true, if the model supports cell-level attributes, false otherwise.
      • getColumnAttributes

        public DataAttributes getColumnAttributes​(int column)
        Description copied from interface: MetaTableModel
        Returns the column-level attributes for the given column.
        Specified by:
        getColumnAttributes in interface MetaTableModel
        Parameters:
        column - the column.
        Returns:
        data-attributes, never null.
      • getTableAttributes

        public DataAttributes getTableAttributes()
        Description copied from interface: MetaTableModel
        Returns table-wide attributes. This usually contain hints about the data-source used to query the data as well as hints on the sort-order of the data.
        Specified by:
        getTableAttributes in interface MetaTableModel
        Returns:
        the table-attributes, never null.
      • getCellDataAttributes

        public DataAttributes getCellDataAttributes​(int row,
                                                    int column)
        Description copied from interface: MetaTableModel
        Returns the meta-attribute as Java-Object. The object type that is expected by the caller is defined in the TableMetaData property set. It is the responsibility of the implementor to map the native meta-data model into a model suitable for reporting.

        Be aware that cell-level attributes do not make it into the designtime dataschema, as this dataschema only looks at the structural metadata available and does not contain any data references.

        Specified by:
        getCellDataAttributes in interface MetaTableModel
        Parameters:
        row - the row of the cell for which the meta-data is queried.
        column - the index of the column for which the meta-data is queried.
        Returns:
        the meta-data object.
      • isCellEditable

        public boolean isCellEditable​(int rowIndex,
                                      int columnIndex)
        Specified by:
        isCellEditable in interface TableModel
      • setValueAt

        public void setValueAt​(Object aValue,
                               int rowIndex,
                               int columnIndex)
        Specified by:
        setValueAt in interface TableModel