Class PrintData

java.lang.Object
com.portal.browse.PrintData
All Implemented Interfaces:
Serializable

public class PrintData extends Object implements 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 Details

    • FLIST

      public static final int FLIST
      Indicates that this print data is for a FList.
      See Also:
    • SPARSE_ARRAY

      public static final int SPARSE_ARRAY
      Indicates that this print data is for a SparseArray.
      See Also:
  • Constructor Details

    • PrintData

      public PrintData(int type, Vector cols, Vector rows, Vector table)
      Creates an instance of this data class.
      Parameters:
      type - the type of print data
      cols - information for the columns
      rows - information for the rows
      table - data for the table
  • Method Details

    • getType

      public int getType()
      Returns:
      the type of print data, either FLIST or SPARSE_ARRAY
    • getColumns

      public Vector getColumns()
      Returns:
      the information for the columns
    • getRows

      public Vector getRows()
      Returns:
      the information for the rows
    • getTable

      public Vector getTable()
      Returns:
      the data for the table