Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
jbreport.ReportException

Uses of ReportException in jbreport
 

Methods in jbreport that throw ReportException
 ReportSection Repository.fetchDocument(java.lang.String name)
          Returns the document for the given name, if one exists.
 ReportElement Repository.fetchFragment(java.lang.String name)
          Returns the fragment for the given name, if one exists.
 ReportStylesheet Repository.fetchStylesheet(java.lang.String name)
          Returns the stylesheet for the given name, if one exists.
 java.lang.String ReportStylesheet.getStyleValue(java.lang.String objectType, java.lang.String className, java.lang.String paramType)
          This method is used to lookup style values.
 void ReportSection.render()
          Render the report using the given renderers.
static ReportElementFactory ReportFacade.fetchElementFactory()
          Returns the default ElementFactory instance.
static void ReportFacade.initialize(java.lang.String uri)
          This will initialize the reporting factory with the appropriate report document url.
static void ReportFacade.initialize(java.io.InputStream is)
          Initialize (prime) the reporting factory with the appropriate report repository.
static ReportSection ReportFacade.fetchDocument(java.lang.String documentName)
          This will return the appropriately named document to the client, or null if no such document was found.
static Repository ReportFacade.fetchRepository(java.lang.String repositoryName)
          Returns the repository instance for the given name.
 ReportElement ReportElementFactory.createElement(java.lang.String name)
          Create a new element for the given element name.
 ReportSection ReportElementFactory.createSection()
          Create a new section element to enable grouping of individual elements.
 ReportSection ReportElementFactory.createDocument()
          Creates a new Section element that is used to represent an entire document.
 ReportComposite ReportElementFactory.createComposite()
          Creates a new Composite element that is used to represent an entire document.
 java.lang.String ReportElement.getString(java.lang.String property, java.lang.String defaultValue)
          Returns the string value for the requested property.
 ReportStylesheet ReportElement.getStylesheet()
          This will return the stylesheet instance for this ReportElement instance.
 java.util.Iterator ReportElement.boundParameters()
          Returns an iterator of all the bound parameters that exist within this section
 void ReportElement.setString(java.lang.String property, java.lang.String value)
          Sets the value of the given property to that given.
 void ReportElement.loadData()
          This will initiate the loading of the data into the report.
 void ReportElement.xmlInitialize(java.lang.String localName, org.xml.sax.Attributes attributes)
          This should initialize the instance with data obtained during the traversal of an xml tree.
 void ReportElement.xmlEnd(java.lang.String cdata)
          This should mark the end of the element definition using xml.
 void ReportElement.xmlEndChild(ReportElement elem)
          This method is called for every child element that is defined during xml tree traversal.