JIDE 3.5.15

com.jidesoft.grid
Interface HeaderLineWrapModel


public interface HeaderLineWrapModel

The table model interface to provide line wrap properties for its table header.

Since:
3.3.4

Method Summary
 int getMaximumRows(int column)
          Gets the maximum row count for the column.
 int getMinimumRows(int column)
          Gets the minimum row count for the column.
 int getPreferredRows(int column)
          Gets the preferred row count for the column.
 int getPreferredWidth(int column)
          Gets the preferred width the column.
 

Method Detail

getPreferredRows

int getPreferredRows(int column)
Gets the preferred row count for the column.

Parameters:
column - the column index
Returns:
the preferred row count.

getMaximumRows

int getMaximumRows(int column)
Gets the maximum row count for the column.

Parameters:
column - the column index
Returns:
the maximum row count.

getMinimumRows

int getMinimumRows(int column)
Gets the minimum row count for the column.

Parameters:
column - the column index
Returns:
the minimum row count.

getPreferredWidth

int getPreferredWidth(int column)
Gets the preferred width the column.

Parameters:
column - the column index
Returns:
the preferred width.

JIDE 3.5.15