jvanzyl     01/05/13 08:58:01

  Modified:    src/java/org/apache/turbine/services/xslt
                        TurbineXSLTService.java
  Log:
  - cleaning up
  
  Revision  Changes    Path
  1.10      +15 -3     
jakarta-turbine/src/java/org/apache/turbine/services/xslt/TurbineXSLTService.java
  
  Index: TurbineXSLTService.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-turbine/src/java/org/apache/turbine/services/xslt/TurbineXSLTService.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- TurbineXSLTService.java   2001/05/13 15:15:44     1.9
  +++ TurbineXSLTService.java   2001/05/13 15:58:01     1.10
  @@ -87,9 +87,21 @@
       implements XSLTService
   
   {
  -    private Hashtable cache = new Hashtable();
  -    private boolean caching = false;
  -    private String path;    
  +    /**
  +     * Property to control the caching of StyleSheetRoots.
  +     */
  +    protected boolean caching = false;
  +    
  +    /**
  +     * Path to style sheets used for tranforming well-formed
  +     * XML documents. The path is relative to the webapp context.
  +     */
  +    protected  String path;    
  +
  +    /**
  +     * Cache of compiled StyleSheetRoots.
  +     */
  +    protected Hashtable cache = new Hashtable();
       
       /**
        * Initialize the TurbineXSLT Service.  Load the path to search for
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to