Oracle™ Business Intelligence Beans Java API Reference
Release 10
g (9.0.4)
Part number B12159_01


oracle.dss.table
Interface TableSizingManager

All Superinterfaces:
GridViewSizingManager, Manager

public interface TableSizingManager
extends GridViewSizingManager

This interface defines the API to which a class implementing custom data sizing for the Table bean must adhere.


Fields inherited from interface oracle.dss.gridView.GridViewSizingManager
NO_SIZE

 

Method Summary
 int getCalculatedColumnHeaderRowHeight()
          Get the calculated height for the column header row.
 int getCalculatedRowHeaderColumnWidth()
          Get the calculated width for the row header column.
 int getColumnHeaderRowHeight()
          Get the height of the column header row in the Table.
 int getPreferredColumnHeaderRowHeight()
          Get the preferred height for the column header row.
 int getPreferredRowHeaderColumnWidth()
          Get the preferred width for the row header column.
 int getRowHeaderColumnWidth()
          Get the width of the row header column in the Table.
 void setCalculatedColumnHeaderRowHeight(int height)
          Set the calculated height for the column header row.
 void setCalculatedRowHeaderColumnWidth(int width)
          Set the calculated width for the row header column.
 void setPreferredColumnHeaderRowHeight(int height)
          Set the preferred height for the column header row.
 void setPreferredRowHeaderColumnWidth(int width)
          Set the preferred width for the row header column.

 

Methods inherited from interface oracle.dss.gridView.GridViewSizingManager
clearCalculatedSizes, clearPreferredSizes, getCalculatedColumnWidth, getCalculatedRowHeight, getColumnWidth, getDefaultColumnHeaderRowHeight, getDefaultColumnWidth, getDefaultRowHeaderColumnWidth, getDefaultRowHeight, getPreferredColumnWidth, getPreferredRowHeight, getRowHeight, reset, setCalculatedColumnWidth, setCalculatedRowHeight, setDefaultColumnHeaderRowHeight, setDefaultColumnWidth, setDefaultRowHeaderColumnWidth, setDefaultRowHeight, setPreferredColumnWidth, setPreferredRowHeight

 

Methods inherited from interface oracle.dss.dataView.Manager
dataSourceChanged

 

Method Detail

setCalculatedColumnHeaderRowHeight

public void setCalculatedColumnHeaderRowHeight(int height)
Set the calculated height for the column header row. The Table uses this method when setting a height calculated by autofit. Applications probably do not need to call this directly.
Parameters:
height - the new calculated height for the row, in pixels; can be NO_SIZE in order to clear a previously set value

getCalculatedColumnHeaderRowHeight

public int getCalculatedColumnHeaderRowHeight()
Get the calculated height for the column header row. The calculated height is set by the Table during an autofit. Applications probably do not need to call this directly.
Returns:
the calculated height for the row, in pixels; returns NO_SIZE if no calculated height has been set for the row

setCalculatedRowHeaderColumnWidth

public void setCalculatedRowHeaderColumnWidth(int width)
Set the calculated width for the row header column. The Table uses this method when setting a width calculated by autofit. Applications probably do not need to call this directly.
Parameters:
width - the new calculated width for the column, in pixels; can be NO_SIZE in order to clear a previously set value

getCalculatedRowHeaderColumnWidth

public int getCalculatedRowHeaderColumnWidth()
Get the calculated width for the row header column. The calculated width is set by the Table during an autofit. Applications probably do not need to call this directly.
Returns:
the calculated width for the column, in pixels; returns NO_SIZE if no calculated width has been set for the row

setPreferredColumnHeaderRowHeight

public void setPreferredColumnHeaderRowHeight(int height)
Set the preferred height for the column header row. The preferred height is set by the Table when the height has been set as a property on the Table.
Parameters:
height - new height, in pixels; can be NO_SIZE in order to clear a previously set value

getPreferredColumnHeaderRowHeight

public int getPreferredColumnHeaderRowHeight()
Get the preferred height for the column header row. The preferred height is set by the Table when the height has been set as a property on the Table.
Returns:
the preferred height for the row, in pixels; can be NO_SIZE if no preferred size has been set for the row

setPreferredRowHeaderColumnWidth

public void setPreferredRowHeaderColumnWidth(int width)
Set the preferred width for the row header column. The preferred width is set by the Table when the width has been set as a property on the Table.
Parameters:
width - new width, in pixels; can be NO_SIZE in order to clear a previously set value

getPreferredRowHeaderColumnWidth

public int getPreferredRowHeaderColumnWidth()
Get the preferred width for the row header column. The preferred width is set by the Table when the width has been set as a property on the Table.
Returns:
the preferred width for the column, in pixels; can be NO_SIZE if no preferred size has been set for the column

getRowHeaderColumnWidth

public int getRowHeaderColumnWidth()
Get the width of the row header column in the Table. The width is determined by taking into account default, calculated, and preferred widths for the column, as well as minimum and maximum cell widths on the Table.
Returns:
width for row header column, in pixels

getColumnHeaderRowHeight

public int getColumnHeaderRowHeight()
Get the height of the column header row in the Table. The height is determined by taking into account default, calculated, and preferred heights for the row, as well as minimum and maximum cell heights on the Table.
Returns:
height for column header row, in pixels

Oracle™ Business Intelligence Beans Java API Reference
Release 10
g (9.0.4)
Part number B12159_01


Copyright © 2003, Oracle. All Rights Reserved.