Uses of Class
net.windward.datasource.DataSourceException

Packages that use DataSourceException
net.windward.datasource This supplies a data source to Windward Reports. 
net.windward.datasource.dom4j This supplies an xml data source to Windward Reports. 
net.windward.datasource.jdbc This supplies a sql data source to Windward Reports. 
net.windward.xmlreport The reporting-specific part of Windward Reports. 
 

Uses of DataSourceException in net.windward.datasource
 

Methods in net.windward.datasource that throw DataSourceException
 net.windward.datasource.ChartDataSet ChartDataImpl.getData()
          Returns a set of data used to create a chart.
 ForEachTag DataSourceIterator.getTag()
          Return the forEach tag in use for this iterator.
 int DataSourceIterator.getIndex()
          Return the index the iteration is on.
 int DataSourceIterator.getCount()
          Return the count the iteration is on.
 boolean DataSourceIterator.isFirst()
          Return true if on the first node returned.
 boolean DataSourceIterator.isLast()
          Return true if on the last node returned.
 void DataSourceIterator.close()
          We are done with this iterator.
static SelectItem[] SelectItem.parse(java.lang.String select)
           
 DataSourceNode DataSourceProvider.getRootNode()
          Returns the root node for this data set.
 void DataSourceProvider.close()
          Called when processing is complete.
 java.lang.String DataSourceProvider.dump()
          Display the entire dataset.
 MetaDataElement[] DataSourceNode.getMetaData(BaseTag tag, int index, DataSourceNode[] stack)
          This method is only called by AutoTag.
 java.lang.Object DataSourceNode.getForEach(ForEachTag tag, DataSourceNode[] stack)
          This method is only called by AutoTag.
 java.lang.String DataSourceNode.adjustSelect(java.lang.String select, DataSourceNode[] stack)
          This method is only called by AutoTag.
 java.lang.Object DataSourceNode.getQuery(QueryTag tag, DataSourceNode[] stack)
          This method is only called by AutoTag.
 java.lang.String DataSourceNode.getSet(SetTag tag, DataSourceNode[] stack)
          This method is only called by AutoTag.
 void DataSourceNode.addQuery(QueryTag tag, DataSourceNode[] stack)
          Called for a query tag.
 void DataSourceNode.addSet(SetTag tag, DataSourceNode[] stack)
          Called for a set tag.
 java.io.InputStream DataSourceNode.getBitmap(OutTag tag, DataSourceNode[] stack)
          Called when tag is of type BITMAP.
 java.lang.String DataSourceNode.getEscape(EscapeTag tag, DataSourceNode[] stack)
          Called for an escape tag.
 java.lang.String[] DataSourceNode.getFunction(FunctionTag tag, DataSourceNode[] stack)
          Called for a function tag.
 java.lang.String DataSourceNode.getHtml(HtmlTag tag, DataSourceNode[] stack)
          Called for an html tag.
 java.lang.String DataSourceNode.getImport(ImportTag tag, DataSourceNode[] stack)
          Called for an import tag.
 java.lang.String DataSourceNode.getLink(LinkTag tag, DataSourceNode[] stack)
          Called for a link tag.
 java.lang.String DataSourceNode.getOut(OutTag tag, DataSourceNode[] stack, java.util.Locale locale)
          Called for an out tag.
 java.io.InputStream DataSourceNode.getOutStream(OutTag tag, DataSourceNode[] stack)
          Called for an out tag.
 boolean DataSourceNode.isExistingNode(BaseTag tag, DataSourceNode[] stack)
          Return true if the passed in node exists.
 boolean DataSourceNode.evaluate(java.lang.String text, DataSourceNode[] stack)
          Evaluate an expression for the boolean result.
 boolean DataSourceNode.isIf(IfTag tag, DataSourceNode[] stack)
          Called for an if tag.
 DataSourceIterator DataSourceNode.iterator(ForEachTag tag, DataSourceNode[] stack)
          Called for a forEach tag.
 DataSourceIterator DataSourceNode.getIterator()
          Returns the iterator presently in use for this node.
 void DataSourceNode.close()
          We are done with this node.
 net.windward.chart.ChartDataSet DataSourceNode.getData(ChartTag tag, DataSourceNode[] stack, java.util.Locale locale)
          Returns a set of data used to create a chart.
 

Uses of DataSourceException in net.windward.datasource.dom4j
 

Methods in net.windward.datasource.dom4j that throw DataSourceException
 java.lang.String Dom4jDataSource.dump()
          Display the entire dataset.
 

Constructors in net.windward.datasource.dom4j that throw DataSourceException
Dom4jDataSource(java.io.InputStream xmlData)
          Create a DataSourceProvider that uses an xml stream as the data and dom4j to traverse it.
Dom4jDataSource(java.lang.String xmlData)
          Create a DataSourceProvider that uses an xml stream as the data and dom4j to traverse it.
 

Uses of DataSourceException in net.windward.datasource.jdbc
 

Methods in net.windward.datasource.jdbc that throw DataSourceException
 void JdbcDataSource.close()
          Called when processing is complete.
 java.lang.String JdbcDataSource.dump()
          Display the entire dataset.
 

Constructors in net.windward.datasource.jdbc that throw DataSourceException
JdbcDataSource(java.lang.String className, java.lang.String url, java.lang.String username, java.lang.String password)
          Create a DataSourceProvider that uses jdbc to access a SQL database.
JdbcDataSource(java.lang.String className, java.lang.String url)
          Create a DataSourceProvider that uses jdbc to access a SQL database.
 

Uses of DataSourceException in net.windward.xmlreport
 

Methods in net.windward.xmlreport that throw DataSourceException
 void ProcessReport.processSetup()
          Process the template and get the report ready to process data files.
 void ProcessReport.processSetup(int inputType)
          Process the template and get the report ready to process data files.
 net.windward.xmlreport.TemplateInfo ProcessReport.getInfo()
          Returns all vars referenced in the template that are not defined in the template.
 void ProcessReport.processData(DataSourceProvider datasourceProvider, java.lang.String datasourceName)
          Process a set of data for the report.
 void ProcessReport.processComplete()
          Process the final report and create the output.
 void ProcessReport.process()
          Create a report from the input streams, writing it to the output (report) stream.
 void ProcessHtml.process()
          Create a report from the input (xml & rtf) streams, writing it to the output (report) stream.
 void ProcessReportAPIBase.process()
          Create a report from the input (xml & rtf) streams, writing it to the output (report) stream.
 void ProcessReportAPIBase.processSetup()
          Process the template and get the report ready to process data files.
 void ProcessReportAPIBase.processSetup(int inputType)
          Process the template and get the report ready to process data files.
 net.windward.xmlreport.TemplateInfo ProcessReportAPIBase.getInfo()
          Returns all vars referenced in the template that are not defined in the template.
 void ProcessReportAPIBase.processData(DataSourceProvider data, java.lang.String datasource)
          Process a set of data for the report.
 void ProcessReportAPIBase.processComplete()
          Process the final report and create the output.
 

Constructors in net.windward.xmlreport that throw DataSourceException
ProcessReport(java.io.InputStream xmlData, java.io.InputStream templateStream, java.io.OutputStream report)
          Create a ProcessReport object with the passed in template & data streams, writing it to the passed in report stream.
ProcessXlsx(java.io.InputStream xmlData, java.io.InputStream template, java.io.OutputStream report)
          Create a ProcessXlsx object with the passed in template & data streams, writing it to the passed in report stream.
ProcessRtf(java.io.InputStream xmlData, java.io.InputStream rtfTemplate, java.io.OutputStream report)
          Create a ProcessRtf object with the passed in template & data streams, writing it to the passed in report stream.
ProcessPdf(java.io.InputStream xmlData, java.io.InputStream rtfTemplate, java.io.OutputStream report)
          Create a ProcessPdf object with the passed in template & data streams, writing it to the passed in report stream.
ProcessExcelML(java.io.InputStream xmlData, java.io.InputStream rtfTemplate, java.io.OutputStream report)
          Create a ProcessExcelML object with the passed in template & data streams, writing it to the passed in report stream.
ProcessXls(java.io.InputStream xmlData, java.io.InputStream rtfTemplate, java.io.OutputStream report)
          Create a ProcessXls object with the passed in template & data streams, writing it to the passed in report stream.
ProcessDocx(java.io.InputStream xmlData, java.io.InputStream template, java.io.OutputStream report)
          Create a ProcessDocx object with the passed in template & data streams, writing it to the passed in report stream.
ProcessWordML(java.io.InputStream xmlData, java.io.InputStream rtfTemplate, java.io.OutputStream report)
          Create a ProcessWordML object with the passed in template & data streams, writing it to the passed in report stream.
ProcessHtml(java.io.InputStream xmlData, java.io.InputStream rtfTemplate, java.io.OutputStream report)
          Create a ProcessReport object with the passed in template & data streams, writing it to the passed in report stream.
ProcessTxt(java.io.InputStream xmlData, java.io.InputStream rtfTemplate, java.io.OutputStream report)
          Create a ProcessReport object with the passed in template & data streams, writing it to the passed in report stream.
 



Copyright © 2002 - 2008 Windward Reports - All Rights Reserved. java reporting software