package com.onaro.sanscreen.client.view.tabular; import com.onaro.commons.beans.IPropertyChangeSupport; public interface ITabularDataTableModel extends ITabularTableModel, IPropertyChangeSupport { public static final String PROP_TABULAR_DATA_MODEL = "tabularDataModel"; //$NON-NLS-1$ public TabularDataModel getTabularDataModel(); public void setTabularDataModel(TabularDataModel tabularDataModel); public String getObjectType(int rowIndex); /** * Get the name of the identifer column. */ public String getIdentifierColumn(); }