deweese     01/11/08 18:37:11

  Modified:    sources/org/apache/batik/apps/rasterizer SVGConverter.java
               sources/org/apache/batik/dom DocumentWrapper.java
               sources/org/apache/batik/ext/awt/image/codec/tiff
                        TIFFDirectory.java TIFFField.java
               sources/org/apache/batik/svggen
                        DefaultCachedImageHandler.java
               xdocs    extendingBatik.xml
  Log:
  1) Fixed some JavaDoc errors
  2) Fixed some DocBook errors
  
  Revision  Changes    Path
  1.7       +7 -9      
xml-batik/sources/org/apache/batik/apps/rasterizer/SVGConverter.java
  
  Index: SVGConverter.java
  ===================================================================
  RCS file: 
/home/cvs/xml-batik/sources/org/apache/batik/apps/rasterizer/SVGConverter.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- SVGConverter.java 2001/11/06 15:04:51     1.6
  +++ SVGConverter.java 2001/11/09 02:37:11     1.7
  @@ -80,7 +80,7 @@
    * <li>pixelToMillimeter: defines the size of a pixel when processing the SVG 
documents.</li>
    * </ul>
    *
  - * @version $Id: SVGConverter.java,v 1.6 2001/11/06 15:04:51 hillion Exp $
  + * @version $Id: SVGConverter.java,v 1.7 2001/11/09 02:37:11 deweese Exp $
    * @author Henri Ruini
    * @author <a href="mailto:[EMAIL PROTECTED]";>Vincent Hardy</a>
    */
  @@ -328,8 +328,8 @@
       }
   
       /**
  -     * Sets the user language. If the value is null, then the default
  -     * (see {@link org.apache.batik.transcoder.image.ImageTranscoder#getLanguage})
  +     * Sets the user language. If the value is null, then the default (see 
  +     * {@link org.apache.batik.bridge.UserAgent#getLanguages})
        * is used.
        */
       public void setLanguage(String language){
  @@ -354,7 +354,7 @@
       /**
        * Sets the pixel to millimeter conversion constant. A negative
        * value will cause the default value 
  -     * (see {@link org.apache.batik.transcoder.image.ImageTranscoder#getPixelToMM})
  +     * (see {@link org.apache.batik.bridge.UserAgent#getPixelToMM})
        * to be used.
        */
       public void setPixelToMillimeter(float pixelToMillimeter){
  @@ -816,11 +816,9 @@
       /**
        * Get the name of the result image file.
        *
  -     * <P>This method differs from the other 
  -     * {@link #getDestinationFile(File) getDestinationFile} method as this
  -     * method modifies the result filename. It changes the existing suffix 
  -     * to correspong the result file type. It also adds the suffix if the file
  -     * doesn't have one.</P>
  +     * <P>This method modifies the result filename, it changes the existing 
  +     * suffix to correspong the result file type. It also adds the suffix 
  +     * if the file doesn't have one.</P>
        *
        * @param file Result file name as a String object.
        *
  
  
  
  1.2       +2 -2      xml-batik/sources/org/apache/batik/dom/DocumentWrapper.java
  
  Index: DocumentWrapper.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/dom/DocumentWrapper.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- DocumentWrapper.java      2001/08/02 17:57:59     1.1
  +++ DocumentWrapper.java      2001/11/09 02:37:11     1.2
  @@ -37,7 +37,7 @@
    * of the underlying document are called in a single thread.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Stephane Hillion</a>
  - * @version $Id: DocumentWrapper.java,v 1.1 2001/08/02 17:57:59 hillion Exp $
  + * @version $Id: DocumentWrapper.java,v 1.2 2001/11/09 02:37:11 deweese Exp $
    */
   public class DocumentWrapper
       extends NodeWrapper
  @@ -78,7 +78,7 @@
   
       /**
        * <b>DOM</b>: Implements {@link org.w3c.dom.Document#getImplementation()}.
  -     * @return {@link #implementation}
  +     * @return {@link #domImplementationWrapper}
        */
       public DOMImplementation getImplementation() {
           return domImplementationWrapper;
  
  
  
  1.2       +0 -1      
xml-batik/sources/org/apache/batik/ext/awt/image/codec/tiff/TIFFDirectory.java
  
  Index: TIFFDirectory.java
  ===================================================================
  RCS file: 
/home/cvs/xml-batik/sources/org/apache/batik/ext/awt/image/codec/tiff/TIFFDirectory.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- TIFFDirectory.java        2001/05/16 12:33:33     1.1
  +++ TIFFDirectory.java        2001/11/09 02:37:11     1.2
  @@ -35,7 +35,6 @@
    * <p><b> This class is not a committed part of the JAI API.  It may
    * be removed or changed in future releases of JAI.</b>
    *
  - * @see javax.media.jai.operator.TIFFDescriptor
    * @see TIFFField
    */
   public class TIFFDirectory extends Object implements Serializable {
  
  
  
  1.2       +0 -1      
xml-batik/sources/org/apache/batik/ext/awt/image/codec/tiff/TIFFField.java
  
  Index: TIFFField.java
  ===================================================================
  RCS file: 
/home/cvs/xml-batik/sources/org/apache/batik/ext/awt/image/codec/tiff/TIFFField.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- TIFFField.java    2001/05/16 12:33:34     1.1
  +++ TIFFField.java    2001/11/09 02:37:11     1.2
  @@ -24,7 +24,6 @@
    * <p><b> This class is not a committed part of the JAI API.  It may
    * be removed or changed in future releases of JAI.</b>
    *
  - * @see javax.media.jai.operator.TIFFDescriptor
    * @see TIFFDirectory
    */
   public class TIFFField extends Object implements Comparable, Serializable {
  
  
  
  1.3       +2 -2      
xml-batik/sources/org/apache/batik/svggen/DefaultCachedImageHandler.java
  
  Index: DefaultCachedImageHandler.java
  ===================================================================
  RCS file: 
/home/cvs/xml-batik/sources/org/apache/batik/svggen/DefaultCachedImageHandler.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DefaultCachedImageHandler.java    2001/11/07 10:48:37     1.2
  +++ DefaultCachedImageHandler.java    2001/11/09 02:37:11     1.3
  @@ -31,7 +31,7 @@
    * for handlers implementing a caching strategy.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Vincent Hardy</a>
  - * @version $Id: DefaultCachedImageHandler.java,v 1.2 2001/11/07 10:48:37 vhardy 
Exp $
  + * @version $Id: DefaultCachedImageHandler.java,v 1.3 2001/11/09 02:37:11 deweese 
Exp $
    * @see             org.apache.batik.svggen.SVGGraphics2D
    */
   public abstract class DefaultCachedImageHandler 
  @@ -122,7 +122,7 @@
        * Creates an Element which can refer to an image.
        * Note that no assumptions should be made by the caller about the
        * corresponding SVG tag. By default, an &lt;image&gt; tag is 
  -     * used, but the {@link CachecImageHandlerBase64Encoder}, for
  +     * used, but the {@link CachedImageHandlerBase64Encoder}, for
        * example, overrides this method to use a different tag.
        */
       public Element createElement(SVGGeneratorContext generatorContext) {
  
  
  
  1.10      +3 -1      xml-batik/xdocs/extendingBatik.xml
  
  Index: extendingBatik.xml
  ===================================================================
  RCS file: /home/cvs/xml-batik/xdocs/extendingBatik.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- extendingBatik.xml        2001/11/08 23:02:44     1.9
  +++ extendingBatik.xml        2001/11/09 02:37:11     1.10
  @@ -11,7 +11,7 @@
   
   <!-- ====================================================================== -->
   <!-- author [EMAIL PROTECTED]                                        -->
  -<!-- version $Id: extendingBatik.xml,v 1.9 2001/11/08 23:02:44 deweese Exp $ -->
  +<!-- version $Id: extendingBatik.xml,v 1.10 2001/11/09 02:37:11 deweese Exp $ -->
   <!-- ====================================================================== -->
   
   <document>
  @@ -173,6 +173,7 @@
   
                   <p>
                   The distribution comes with a number of examples
  +             </p>
                   <ul>
                     
<li><code>org.apache.batik.extension.svg.BatikStarElement</code></li>
                     
<li><code>org.apache.batik.extension.svg.BatikRegularPolygonElement</code></li>
  @@ -180,6 +181,7 @@
                     
<li><code>org.apache.batik.extension.svg.SolidColorElement</code></li>
                     
<li><code>org.apache.batik.extension.svg.ColorSwitchElement</code></li>
                   </ul>
  +             <p>
                   Included with these examples is 
                   <code>org.apache.batik.extension.svg.BatikDomExtension</code> 
                   which is the required instance of <code>DomExtension</code> 
  
  
  

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

Reply via email to