remm        01/12/03 13:32:27

  Modified:    jasper/src/share/org/apache/jasper/compiler
                        KjcJavaCompiler.java
  Log:
  - Fix build problem.
  
  Revision  Changes    Path
  1.2       +10 -2     
jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/KjcJavaCompiler.java
  
  Index: KjcJavaCompiler.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/KjcJavaCompiler.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- KjcJavaCompiler.java      2001/12/01 17:50:53     1.1
  +++ KjcJavaCompiler.java      2001/12/03 21:32:27     1.2
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/KjcJavaCompiler.java,v
 1.1 2001/12/01 17:50:53 remm Exp $
  - * $Revision: 1.1 $
  - * $Date: 2001/12/01 17:50:53 $
  + * $Header: 
/home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/compiler/KjcJavaCompiler.java,v
 1.2 2001/12/03 21:32:27 remm Exp $
  + * $Revision: 1.2 $
  + * $Date: 2001/12/03 21:32:27 $
    *
    * ====================================================================
    *
  @@ -91,6 +91,7 @@
       String compilerPath;
       String outdir; // ignored
       OutputStream out;
  +    boolean classDebugInfo=false;
   
       /**
        * Specify where the compiler can be found
  @@ -126,6 +127,13 @@
        */
       public void setMsgOutput(OutputStream out) {
         this.out = out;
  +    }
  +
  +    /**
  +     * Set if you want debugging information in the class file
  +     */
  +    public void setClassDebugInfo(boolean classDebugInfo) {
  +        this.classDebugInfo = classDebugInfo;
       }
   
       /**
  
  
  

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

Reply via email to