Add c'tor that takes table name, and override withTableName

This commit is contained in:
2024-08-01 14:41:55 -05:00
parent 58b0936c50
commit 2de3306f95

View File

@ -59,6 +59,30 @@ public class AggregateInput extends AbstractTableActionInput
/*******************************************************************************
** Constructor
**
*******************************************************************************/
public AggregateInput(String tableName)
{
this();
setTableName(tableName);
}
/*******************************************************************************
**
*******************************************************************************/
@Override
public AggregateInput withTableName(String tableName)
{
super.withTableName(tableName);
return (this);
}
/******************************************************************************* /*******************************************************************************
** Getter for filter ** Getter for filter
** **