use of org.talend.dataprofiler.core.ui.editor.preview.model.entity.TableStructureEntity in project tdq-studio-se by Talend.
the class SimpleRuleStatisticsTableState method getTableStructure.
@Override
protected TableStructureEntity getTableStructure() {
TableStructureEntity entity = new TableStructureEntity();
entity.setFieldNames(new String[] { DefaultMessagesImpl.getString("SimpleStatisticsStateTable.Label"), DefaultMessagesImpl.getString("SimpleStatisticsStateTable.Count"), // $NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
"%" });
entity.setFieldWidths(new Integer[] { 200, 150, 150 });
return entity;
}
use of org.talend.dataprofiler.core.ui.editor.preview.model.entity.TableStructureEntity in project tdq-studio-se by Talend.
the class SummaryStatisticsTableState method getTableStructure.
@Override
protected TableStructureEntity getTableStructure() {
TableStructureEntity entity = new TableStructureEntity();
entity.setFieldNames(new String[] { DefaultMessagesImpl.getString("SummaryStatisticsState.Label"), // $NON-NLS-1$ //$NON-NLS-2$
DefaultMessagesImpl.getString("SummaryStatisticsState.Count") });
entity.setFieldWidths(new Integer[] { 200, 300 });
return entity;
}
use of org.talend.dataprofiler.core.ui.editor.preview.model.entity.TableStructureEntity in project tdq-studio-se by Talend.
the class TextStatisticsTableState method getTableStructure.
@Override
protected TableStructureEntity getTableStructure() {
TableStructureEntity entity = new TableStructureEntity();
entity.setFieldNames(new String[] { DefaultMessagesImpl.getString("TextStatisticsState.Label"), // $NON-NLS-1$ //$NON-NLS-2$
DefaultMessagesImpl.getString("TextStatisticsState.Value") });
entity.setFieldWidths(new Integer[] { 200, 300 });
return entity;
}
use of org.talend.dataprofiler.core.ui.editor.preview.model.entity.TableStructureEntity in project tdq-studio-se by Talend.
the class WhereRuleStatisticsTableState method getTableStructure.
@Override
protected TableStructureEntity getTableStructure() {
TableStructureEntity entity = new TableStructureEntity();
entity.setFieldNames(new String[] { DefaultMessagesImpl.getString("WhereRuleStatisticsStateTable.Label"), DefaultMessagesImpl.getString("WhereRuleStatisticsStateTable.Match"), DefaultMessagesImpl.getString("WhereRuleStatisticsStateTable.NoMatch"), DefaultMessagesImpl.getString("WhereRuleStatisticsStateTable.Match_"), // $NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$
DefaultMessagesImpl.getString("WhereRuleStatisticsStateTable.NoMatch_") });
entity.setFieldWidths(new Integer[] { 200, 75, 75, 75, 75 });
return entity;
}
use of org.talend.dataprofiler.core.ui.editor.preview.model.entity.TableStructureEntity in project tdq-studio-se by Talend.
the class WhereRuleStatisticsTableState method getTableStructureRowCount.
protected TableStructureEntity getTableStructureRowCount() {
TableStructureEntity entity = new TableStructureEntity();
entity.setFieldNames(new String[] { DefaultMessagesImpl.getString("SimpleStatisticsStateTable.Label"), DefaultMessagesImpl.getString("SimpleStatisticsStateTable.Count"), // $NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
"%" });
entity.setFieldWidths(new Integer[] { 200, 150, 150 });
return entity;
}
Aggregations