Uses of Class
net.windward.tags.TagException

Packages that use TagException
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.tags These are the classes that represent Windward Reports tags in the template. 
net.windward.xmlreport The reporting-specific part of Windward Reports. 
 

Uses of TagException in net.windward.datasource
 

Methods in net.windward.datasource that throw TagException
 void DataSourceProvider.validateTag(BaseTag xmlTag)
          Verifys that a tag has all required attributes and no unknown attributes.
 

Uses of TagException in net.windward.datasource.dom4j
 

Methods in net.windward.datasource.dom4j that throw TagException
 void Dom4jDataSource.validateTag(BaseTag xmlTag)
          Verifys that a tag has all required attributes and no unknown attributes.
 

Uses of TagException in net.windward.datasource.jdbc
 

Methods in net.windward.datasource.jdbc that throw TagException
 void JdbcDataSource.validateTag(BaseTag xmlTag)
          Verifys that a tag has all required attributes and no unknown attributes.
 

Uses of TagException in net.windward.tags
 

Methods in net.windward.tags that throw TagException
abstract  java.lang.String BaseTag.toText()
          Converts this node back in to it's string representation in the document
 java.lang.String BaseTag.toTagText(java.lang.String tag, int tagType, boolean selfContained)
          Adds the datasource and bean attributes to a tag, and then the closing bracket.
static BaseTag BaseTag.factory(java.lang.String text, int nestLevel, boolean ignoreErrors)
          Generate a tag for the passed in command.
static BaseTag BaseTag.factory(int typ, java.util.Map map, int nestLevel, boolean ignoreErrors)
          Generate a tag for the passed in command.
 java.lang.String ForEachTag.toText()
          Converts this node back in to it's string representation in the document
 java.lang.String EscapeTag.toText()
          Converts this node back in to it's string representation in the document
 java.lang.String ColumnTag.toText()
          Converts this node back in to it's string representation in the document
 java.lang.String FunctionTag.toText()
          Converts this node back in to it's string representation in the document
 java.lang.String EndForEachTag.toText()
          Converts this node back in to it's string representation in the document
 java.lang.String MatrixTag.toText()
          Converts this node back in to it's string representation in the document
 java.lang.String HtmlTag.toText()
          Converts this node back in to it's string representation in the document
 java.lang.String EndIfTag.toText()
          Converts this node back in to it's string representation in the document
 java.lang.String LinkTag.toText()
          Converts this node back in to it's string representation in the document
 java.lang.String OutTag.toText()
          Converts this node back in to it's string representation in the document
 java.lang.String EndMatrixTag.toText()
          Converts this node back in to it's string representation in the document
 java.lang.String EndLinkTag.toText()
          Converts this node back in to it's string representation in the document
 java.lang.String SetTag.toText()
          Converts this node back in to it's string representation in the document
 java.lang.String QueryTag.toText()
          Converts this node back in to it's string representation in the document
static void TagAttributes.validateTag(BaseTag xmlTag, TagAttributes[] tagAttrs, boolean strict)
          Verifys that a tag has all required attributes and no unknown attributes.
static void TagAttributes.validateTag(BaseTag xmlTag, TagAttributes ta, boolean strict)
          Verifys that a tag has all required attributes and no unknown attributes.
 java.lang.String IfTag.toText()
          Converts this node back in to it's string representation in the document
 java.lang.String ImportTag.toText()
          Converts this node back in to it's string representation in the document
 java.lang.String RowTag.toText()
          Converts this node back in to it's string representation in the document
 java.lang.String ElseTag.toText()
          Converts this node back in to it's string representation in the document
 java.lang.String ChartTag.toText()
          Converts this node back in to it's string representation in the document
 

Constructors in net.windward.tags that throw TagException
ForEachTag(java.util.Map map, boolean selfContained, int nestLevel, boolean ignoreErrors)
          Create a forEach element using the passed in map values.
EscapeTag(java.util.Map map, boolean selfContained, boolean ignoreErrors)
          Create an escape element using the passed in map values.
ColumnTag(java.util.Map map, boolean selfContained, int nestLevel, boolean ignoreErrors)
          Create an else element using the passed in map values.
FunctionTag(java.util.Map map, boolean selfContained, boolean ignoreErrors)
          Create an import element using the passed in map values.
EndForEachTag(java.util.Map map, boolean selfContained, int nestLevel, boolean ignoreErrors)
          Create an end foreach element using the passed in map values.
MatrixTag(java.util.Map map, boolean selfContained, int nestLevel, boolean ignoreErrors)
          Create an else element using the passed in map values.
HtmlTag(java.util.Map map, boolean selfContained, boolean ignoreErrors)
          Create a html element using the passed in map values.
EndIfTag(java.util.Map map, boolean selfContained, int nestLevel, boolean ignoreErrors)
          Create an end if element using the passed in map values.
LinkTag(java.util.Map map, boolean selfContained, int nestLevel, boolean ignoreErrors)
          Create a link element using the passed in map values.
OutTag(java.util.Map map, boolean selfContained, boolean ignoreErrors)
          Create an import element using the passed in map values.
EndMatrixTag(java.util.Map map, boolean selfContained, int nestLevel, boolean ignoreErrors)
          Create an end matrix element using the passed in map values.
EndMatrixTag(int nestLevel)
          Create a psuedo tag.
EndLinkTag(java.util.Map map, boolean selfContained, int nestLevel, boolean ignoreErrors)
          Create an end link element using the passed in map values.
SetTag(java.util.Map map, boolean selfContained, boolean ignoreErrors)
          Create an query element using the passed in map values.
QueryTag(java.util.Map map, boolean selfContained, boolean ignoreErrors)
          Create an query element using the passed in map values.
IfTag(java.util.Map map, boolean selfContained, int nestLevel, boolean ignoreErrors)
          Create an if element using the passed in map values.
ImportTag(java.util.Map map, boolean selfContained, boolean ignoreErrors)
          Create an import element using the passed in map values.
RowTag(java.util.Map map, boolean selfContained, int nestLevel, boolean ignoreErrors)
          Create an else element using the passed in map values.
ElseTag(java.util.Map map, boolean selfContained, int nestLevel, boolean ignoreErrors)
          Create an else element using the passed in map values.
ChartTag(java.util.Map map, boolean selfContained, boolean ignoreError)
          Create a chart element using the passed in map values.
 

Uses of TagException in net.windward.xmlreport
 

Methods in net.windward.xmlreport that throw TagException
 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.
 



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