org.eclipse.hyades.edit.datapool

Interface IDatapoolCell

  • All Superinterfaces:
    IDatapoolCell


    public interface IDatapoolCell
    extends IDatapoolCell
    An element of a record within a datapool. Each cell contains a reference to the variable that it is referenced by along with the actual value the cell represents. There are a series of convienence methods for accessing the associated value as a specific type, such as a String or an int.
    • Method Detail

      • setPersistedRepresentation

        void setPersistedRepresentation(java.lang.String value)
        Replace the unprocessed persisted string representation.
        Parameters:
        value - The value to be associated with this cell.
        See Also:
        #getRawValue()
      • getPersistedRepresentation

        java.lang.String getPersistedRepresentation()
        The unprocessed string representation of the cell is returned.
        Returns:
        The unprocessed string representation of the cell.
        See Also:
        #setRawValue()
      • setCellValue

        void setCellValue(java.lang.Object value)
        Replace the value associated with the cell.
        Parameters:
        value - The value to be associated with this cell.
        See Also:
        IDatapoolCell.getCellValue()
      • getClonedCellValue

        java.lang.Object getClonedCellValue()
        Clones the value associated with the cell.
        Returns:
        A exact duplicate of the value.