User: rinkrank
  Date: 02/02/19 16:12:03

  Modified:    src/xjavadoc/xml XMLWriter.java
                        XExecutableMemberComparator.java PackageWriter.java
                        JavaDox.java JavaDocParser.java ClassWriter.java
  Log:
  -Added benchmark target, javadoc is still 20% faster than xjavadoc :-(
  -Optimizations: static parser, MULTI=false (no more ASTxxx classes)
  -Mades impl classes package private
  -Fixed some comments
  -Fixed a few bugs
  
  Revision  Changes    Path
  1.2       +2 -2      xjavadoc/src/xjavadoc/xml/XMLWriter.java
  
  Index: XMLWriter.java
  ===================================================================
  RCS file: /cvsroot/xdoclet/xjavadoc/src/xjavadoc/xml/XMLWriter.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -w -r1.1 -r1.2
  --- XMLWriter.java    21 Jan 2002 19:53:07 -0000      1.1
  +++ XMLWriter.java    20 Feb 2002 00:12:02 -0000      1.2
  @@ -12,7 +12,7 @@
    *   notice, this list of conditions and the following disclaimer in the
    *   documentation and/or other materials provided with the distribution.
    *
  - * - Neither the name of the BEKK Consulting nor the names of its
  + * - Neither the name of BEKK Consulting nor the names of its
    *   contributors may be used to endorse or promote products derived from
    *   this software without specific prior written permission.
    *
  @@ -44,7 +44,7 @@
   /**
    * Describe what this class does
    *
  - * @author Aslak Helles�y
  + * @author <a href="mailto:[EMAIL PROTECTED]";>Aslak Helles�y</a>
    * @created 3. januar 2002
    * @todo-javadoc Write javadocs
    */
  
  
  
  1.2       +2 -2      xjavadoc/src/xjavadoc/xml/XExecutableMemberComparator.java
  
  Index: XExecutableMemberComparator.java
  ===================================================================
  RCS file: 
/cvsroot/xdoclet/xjavadoc/src/xjavadoc/xml/XExecutableMemberComparator.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -w -r1.1 -r1.2
  --- XExecutableMemberComparator.java  21 Jan 2002 19:53:07 -0000      1.1
  +++ XExecutableMemberComparator.java  20 Feb 2002 00:12:03 -0000      1.2
  @@ -12,7 +12,7 @@
    *   notice, this list of conditions and the following disclaimer in the
    *   documentation and/or other materials provided with the distribution.
    *
  - * - Neither the name of the BEKK Consulting nor the names of its
  + * - Neither the name of BEKK Consulting nor the names of its
    *   contributors may be used to endorse or promote products derived from
    *   this software without specific prior written permission.
    *
  @@ -43,7 +43,7 @@
    * This class is used when sorting methods/constructors. Only needed for xml
    * printing.
    *
  - * @author Aslak Helles�y
  + * @author <a href="mailto:[EMAIL PROTECTED]";>Aslak Helles�y</a>
    * @created 3. januar 2002
    */
   class XExecutableMemberComparator implements Comparator {
  
  
  
  1.2       +2 -5      xjavadoc/src/xjavadoc/xml/PackageWriter.java
  
  Index: PackageWriter.java
  ===================================================================
  RCS file: /cvsroot/xdoclet/xjavadoc/src/xjavadoc/xml/PackageWriter.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -w -r1.1 -r1.2
  --- PackageWriter.java        21 Jan 2002 19:53:07 -0000      1.1
  +++ PackageWriter.java        20 Feb 2002 00:12:03 -0000      1.2
  @@ -12,7 +12,7 @@
    *   notice, this list of conditions and the following disclaimer in the
    *   documentation and/or other materials provided with the distribution.
    *
  - * - Neither the name of the BEKK Consulting nor the names of its
  + * - Neither the name of BEKK Consulting nor the names of its
    *   contributors may be used to endorse or promote products derived from
    *   this software without specific prior written permission.
    *
  @@ -39,13 +39,10 @@
   import xjavadoc.XClass;
   import xjavadoc.XPackage;
   
  -// Referenced classes of package com.componentregistry.javadox:
  -//            JavaDocParser, ClassWriter
  -
   /**
    * Describe what this class does
    *
  - * @author Aslak Helles�y
  + * @author <a href="mailto:[EMAIL PROTECTED]";>Aslak Helles�y</a>
    * @created 3. januar 2002
    * @todo-javadoc Write javadocs
    */
  
  
  
  1.2       +2 -5      xjavadoc/src/xjavadoc/xml/JavaDox.java
  
  Index: JavaDox.java
  ===================================================================
  RCS file: /cvsroot/xdoclet/xjavadoc/src/xjavadoc/xml/JavaDox.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -w -r1.1 -r1.2
  --- JavaDox.java      21 Jan 2002 19:53:07 -0000      1.1
  +++ JavaDox.java      20 Feb 2002 00:12:03 -0000      1.2
  @@ -12,7 +12,7 @@
    *   notice, this list of conditions and the following disclaimer in the
    *   documentation and/or other materials provided with the distribution.
    *
  - * - Neither the name of the BEKK Consulting nor the names of its
  + * - Neither the name of BEKK Consulting nor the names of its
    *   contributors may be used to endorse or promote products derived from
    *   this software without specific prior written permission.
    *
  @@ -46,13 +46,10 @@
   import xjavadoc.XJavaDocRoot;
   import xjavadoc.XPackage;
   
  -// Referenced classes of package com.componentregistry.javadox:
  -//            PackageWriter, ConfigurationJavaDox
  -
   /**
    * Describe what this class does
    *
  - * @author Aslak Helles�y
  + * @author <a href="mailto:[EMAIL PROTECTED]";>Aslak Helles�y</a>
    * @created 3. januar 2002
    * @todo-javadoc Write javadocs
    */
  
  
  
  1.2       +2 -2      xjavadoc/src/xjavadoc/xml/JavaDocParser.java
  
  Index: JavaDocParser.java
  ===================================================================
  RCS file: /cvsroot/xdoclet/xjavadoc/src/xjavadoc/xml/JavaDocParser.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -w -r1.1 -r1.2
  --- JavaDocParser.java        21 Jan 2002 19:53:07 -0000      1.1
  +++ JavaDocParser.java        20 Feb 2002 00:12:03 -0000      1.2
  @@ -12,7 +12,7 @@
    *   notice, this list of conditions and the following disclaimer in the
    *   documentation and/or other materials provided with the distribution.
    *
  - * - Neither the name of the BEKK Consulting nor the names of its
  + * - Neither the name of BEKK Consulting nor the names of its
    *   contributors may be used to endorse or promote products derived from
    *   this software without specific prior written permission.
    *
  @@ -42,7 +42,7 @@
   /**
    * Describe what this class does
    *
  - * @author Aslak Helles�y
  + * @author <a href="mailto:[EMAIL PROTECTED]";>Aslak Helles�y</a>
    * @created 3. januar 2002
    * @todo-javadoc Write javadocs
    */
  
  
  
  1.2       +2 -5      xjavadoc/src/xjavadoc/xml/ClassWriter.java
  
  Index: ClassWriter.java
  ===================================================================
  RCS file: /cvsroot/xdoclet/xjavadoc/src/xjavadoc/xml/ClassWriter.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -w -r1.1 -r1.2
  --- ClassWriter.java  21 Jan 2002 19:53:07 -0000      1.1
  +++ ClassWriter.java  20 Feb 2002 00:12:03 -0000      1.2
  @@ -12,7 +12,7 @@
    *   notice, this list of conditions and the following disclaimer in the
    *   documentation and/or other materials provided with the distribution.
    *
  - * - Neither the name of the BEKK Consulting nor the names of its
  + * - Neither the name of BEKK Consulting nor the names of its
    *   contributors may be used to endorse or promote products derived from
    *   this software without specific prior written permission.
    *
  @@ -43,13 +43,10 @@
   import xjavadoc.XMethod;
   import xjavadoc.XParameter;
   
  -// Referenced classes of package com.componentregistry.javadox:
  -//            JavaDocParser
  -
   /**
    * Describe what this class does
    *
  - * @author Aslak Helles�y
  + * @author <a href="mailto:[EMAIL PROTECTED]";>Aslak Helles�y</a>
    * @created 3. januar 2002
    * @todo-javadoc Write javadocs
    */
  
  
  

_______________________________________________
Xdoclet-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel

Reply via email to