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

Quick Search    Search Deep

com.dghda.kent
Interface ReportEnvironment  view ReportEnvironment download ReportEnvironment.java

All Superinterfaces:
com.dghda.log.Logger

public interface ReportEnvironment
extends com.dghda.log.Logger

An interface which encapsulates the environment the engine is running in. Provides a mechanism to get properties, access files, etc.


Method Summary
 java.lang.String getActionPath()
          Path to action providers.
 java.lang.String getDTDPath(java.lang.String dtd)
          Returns the path to the given DTD.
 java.util.Properties getProperties()
          Returns a Property object containing all configuration parameters.
 java.lang.String getProperty(java.lang.String property)
          Returns the value of the given property, or null if it is not set.
 java.lang.String getReportPath()
          Path to report providers.
 java.io.InputStream getResource(java.lang.String path)
          Returns an input stream reading from the given resource.
 java.lang.String getTransformPath()
          Path to transform providers.
 
Methods inherited from interface com.dghda.log.Logger
log, log
 

Method Detail

getReportPath

public java.lang.String getReportPath()
Path to report providers.


getActionPath

public java.lang.String getActionPath()
Path to action providers.


getTransformPath

public java.lang.String getTransformPath()
Path to transform providers.


getDTDPath

public java.lang.String getDTDPath(java.lang.String dtd)
Returns the path to the given DTD.


getResource

public java.io.InputStream getResource(java.lang.String path)
                                throws java.io.IOException
Returns an input stream reading from the given resource.


getProperties

public java.util.Properties getProperties()
Returns a Property object containing all configuration parameters.


getProperty

public java.lang.String getProperty(java.lang.String property)
Returns the value of the given property, or null if it is not set.