Package com.portal.browse
Class PrintData
java.lang.Object
com.portal.browse.PrintData
- All Implemented Interfaces:
Serializable
This class contains information neccessary for printing. It's main purpose
is for passing the neccessary infromation from the controller to the panel.
Currently it supports printing for either FLists or SparseArrays.
- Version:
- %version: 1 % %date_modified: Tue Nov 14 11:39:39 2000 %
- Author:
- mgaines
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
Indicates that this print data is for a FList.static final int
Indicates that this print data is for a SparseArray. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
FLIST
public static final int FLISTIndicates that this print data is for a FList.- See Also:
-
SPARSE_ARRAY
public static final int SPARSE_ARRAYIndicates that this print data is for a SparseArray.- See Also:
-
-
Constructor Details
-
PrintData
Creates an instance of this data class.- Parameters:
type
- the type of print datacols
- information for the columnsrows
- information for the rowstable
- data for the table
-
-
Method Details
-
getType
public int getType()- Returns:
- the type of print data, either FLIST or SPARSE_ARRAY
-
getColumns
- Returns:
- the information for the columns
-
getRows
- Returns:
- the information for the rows
-
getTable
- Returns:
- the data for the table
-