public Object get(final int column)
throws DataSourceException
{
if (!isReadable())
{
throw new DataSourceException("Failed to query column.");
}
try
{
return dataSource.getObject(column + 1);
}
catch (com.sun.star.report.DataSourceException e)
{
throw new DataSourceException("Failed to query column.", e);
}
}