com.sas.servlet.beans
Interface TableWriterInterface

All Known Subinterfaces:
TableInterface

public interface TableWriterInterface
extends TransformationInterface


Method Summary
 void writeColumnHeadings(OutputStream out)
          Writes the column headings
 void writeColumnHeadings(Writer out)
          Writes the column headings
 void writeRow(long row, OutputStream out)
          Writes a single row of the formatted table.
 void writeRow(long row, Writer out)
          Writes a single row of the formatted table.
 void writeTableFooter(OutputStream out)
          Writes the table footer
 void writeTableFooter(Writer out)
          Writes the table footer
 void writeTableHeader(OutputStream out)
          Writes the table header
 void writeTableHeader(Writer out)
          Writes the table header
 
Methods inherited from interface com.sas.servlet.beans.TransformationInterface
getCustomAttributes, getDescription, getName, getParent, getRequest, getResponse, setCustomAttributes, setDescription, setName, setParent, setRequest, setResponse, write, write, write, write
 
Methods inherited from interface com.sas.ComponentInterface
addPropertyChangeListener, addVetoableChangeListener, anyPropertyChangeListeners, dumpComponent, firePropertyChange, firePropertyChange, fireVetoableChange, getComponentDescription, getComponentSupportInfo, initialize, initializeComponent, isDesignTime, removePropertyChangeListener, removeVetoableChangeListener, setComponentDescription, setComponentSupportInfo, setDefaultValues
 
Methods inherited from interface com.sas.ViewInterface
attachModel, detachModel, getModelInterface, getRequiredInterfaces, getViewInterfaceSupportInfo, refresh, removeInterfaceTraps, setModelInterface, setRequiredInterfaces, setViewInterfaceSupportInfo, supportsRequiredInterfaces, trapInterfaceEvents
 
Methods inherited from interface com.sas.ModelInterface
attachView, detachView
 
Methods inherited from interface com.sas.LinkPropertiesInterface
addLink, getLinkInfo, isLinked, queryLinks, queryLinks, removeAllLinks, removeLink, setLinkInfo
 
Methods inherited from interface java.beans.PropertyChangeListener
propertyChange
 
Methods inherited from interface java.io.ObjectInputValidation
validateObject
 

Method Detail

writeRow

public void writeRow(long row,
                     Writer out)
              throws IOException
Writes a single row of the formatted table. The data from the current row in the database will be used.
Parameters:
row - The 1-based row number to write
out - The output stream
Throws:
IOException - Thrown if some type of I/O error occurs

writeRow

public void writeRow(long row,
                     OutputStream out)
              throws IOException
Writes a single row of the formatted table. The data from the current row in the database will be used.
Parameters:
row - The 1-based row number to write
out - The output stream
Throws:
IOException - Thrown if some type of I/O error occurs

writeColumnHeadings

public void writeColumnHeadings(Writer out)
                         throws IOException
Writes the column headings
Parameters:
out - The output stream
Throws:
IOException - Thrown if some type of I/O error occurs

writeColumnHeadings

public void writeColumnHeadings(OutputStream out)
                         throws IOException
Writes the column headings
Parameters:
out - The output stream
Throws:
IOException - Thrown if some type of I/O error occurs

writeTableHeader

public void writeTableHeader(Writer out)
                      throws IOException
Writes the table header
Parameters:
out - The output stream
Throws:
IOException - Thrown if some type of I/O error occurs

writeTableHeader

public void writeTableHeader(OutputStream out)
                      throws IOException
Writes the table header
Parameters:
out - The output stream
Throws:
IOException - Thrown if some type of I/O error occurs

writeTableFooter

public void writeTableFooter(Writer out)
                      throws IOException
Writes the table footer
Parameters:
out - The output stream
Throws:
IOException - Thrown if some type of I/O error occurs

writeTableFooter

public void writeTableFooter(OutputStream out)
                      throws IOException
Writes the table footer
Parameters:
out - The output stream
Throws:
IOException - Thrown if some type of I/O error occurs


Version: 1.2.20000317.001 Formatted: 2000/07/06 15:57:33PM