larryi      01/01/14 12:48:45

  Modified:    src/facade22/org/apache/tomcat/facade JspInterceptor.java
  Log:
  Update to compile with classDebugInfo property added to Jasper's Options.
  
  Revision  Changes    Path
  1.4       +7 -0      
jakarta-tomcat/src/facade22/org/apache/tomcat/facade/JspInterceptor.java
  
  Index: JspInterceptor.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat/src/facade22/org/apache/tomcat/facade/JspInterceptor.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- JspInterceptor.java       2001/01/08 00:04:23     1.3
  +++ JspInterceptor.java       2001/01/14 20:48:45     1.4
  @@ -464,6 +464,8 @@
           if (compilerPath != null)
               javac.setCompilerPath(compilerPath);
   
  +     javac.setClassDebugInfo(options.getClassDebugInfo());
  +
        return javac;
       }
   
  @@ -502,6 +504,7 @@
       public boolean largeFile = false;
       public boolean mappedFile = false;
       public boolean sendErrorToClient = false;
  +    public boolean classDebugInfo = false;
       public String ieClassId = "clsid:8AD9C840-044E-11D1-B3E9-00805F499D93";
       public Class jspCompilerPlugin = null;
       public String jspCompilerPath = null;
  @@ -531,6 +534,10 @@
           return sendErrorToClient;
       }
    
  +    public boolean getClassDebugInfo() {
  +        return classDebugInfo;
  +    }
  +
       public String getIeClassId() {
           return ieClassId;
       }
  
  
  

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

Reply via email to