Author: adelmelle
Date: Sat May 16 02:10:42 2015
New Revision: 1679676

URL: http://svn.apache.org/r1679676
Log:
Javadoc fixups

Modified:
    xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/AFPResourceManager.java
    xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/AFPFont.java
    xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/CharacterSet.java
    
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/CharacterSetBuilder.java
    
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/CharacterSetOrientation.java
    xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/DoubleByteFont.java
    
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/FontRuntimeException.java
    xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/FopCharacterSet.java
    xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/RasterFont.java
    
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/modca/AbstractNamedAFPObject.java
    xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/modca/IMImageObject.java
    
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/modca/TagLogicalElement.java
    
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/modca/triplets/AttributeValueTriplet.java
    xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/svg/AFPBridgeContext.java
    
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/svg/AFPTextElementBridge.java
    xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/svg/AFPTextPainter.java
    xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/util/AFPResourceUtil.java
    
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/util/DTDEntityResolver.java
    
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/util/StructuredFieldReader.java

Modified: 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/AFPResourceManager.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/AFPResourceManager.java?rev=1679676&r1=1679675&r2=1679676&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/AFPResourceManager.java 
(original)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/AFPResourceManager.java 
Sat May 16 02:10:42 2015
@@ -74,6 +74,8 @@ public class AFPResourceManager {
 
     /**
      * Main constructor
+     *
+     * @param resourceResolver  the associated {@link 
InternalResourceResolver} instance
      */
     public AFPResourceManager(InternalResourceResolver resourceResolver) {
         this.factory = new Factory();
@@ -263,19 +265,21 @@ public class AFPResourceManager {
     }
 
     /**
-     * TODO
-     * @param resourceInfo
-     * @return
+     * Returns {@code true} if the passed {@link AFPResourceInfo} instance is 
already cached.
+     *
+     * @param resourceInfo  the resource info to check
+     * @return  {@code true} if the object is cached
      */
     public boolean isObjectCached(AFPResourceInfo resourceInfo) {
         return includeObjectCache.containsKey(resourceInfo);
     }
 
     /**
-     * TODO
-     * @param resourceInfo
-     * @param areaInfo
-     * @return
+     * {@asf.todo}
+     *
+     * @param resourceInfo  the resource info to check
+     * @param areaInfo  the area info to check
+     * @return  {@code true} if ...
      */
     public boolean includeCachedObject(AFPResourceInfo resourceInfo, 
AFPObjectAreaInfo areaInfo) {
 

Modified: xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/AFPFont.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/AFPFont.java?rev=1679676&r1=1679675&r2=1679676&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/AFPFont.java 
(original)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/AFPFont.java Sat 
May 16 02:10:42 2015
@@ -31,7 +31,6 @@ import org.apache.fop.fonts.Typeface;
 /**
  * All implementations of AFP fonts should extend this base class,
  * the object implements the FontMetrics information.
- * <p/>
  */
 public abstract class AFPFont extends Typeface {
 

Modified: 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/CharacterSet.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/CharacterSet.java?rev=1679676&r1=1679675&r2=1679676&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/CharacterSet.java 
(original)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/CharacterSet.java 
Sat May 16 02:10:42 2015
@@ -38,16 +38,16 @@ import org.apache.fop.afp.util.StringUti
  * font description information for identifying the characters, font metric
  * information for positioning the characters, and character shape information
  * for presenting the character images.
- * <p/>
+ * <br>
  * Presenting a graphic character on a presentation surface requires
  * information on the rotation and position of character on the physical
  * or logical page.
- * <p/>
+ * <br>
  * This class proivdes font metric information for a particular font
  * as identified by the character set name. This information is obtained
  * directly from the AFP font files which must be installed in the path
  * specified in the afp-fonts xml definition file.
- * <p/>
+ * <br>
  */
 public class CharacterSet {
 
@@ -167,14 +167,18 @@ public class CharacterSet {
     }
 
     /**
-     * TODO
+     * Return the width to use for an underscore (_) character.
+     *
+     * @return  the width of an underscore character
      */
     public int getUnderscoreWidth() {
         return getCharacterSetOrientation().getUnderscoreWidth();
     }
 
     /**
-     * TODO
+     * Return the position for an underscore (_) character.
+     *
+     * @return the position of an underscore character
      */
     public int getUnderscorePosition() {
         return getCharacterSetOrientation().getUnderscorePosition();
@@ -226,6 +230,7 @@ public class CharacterSet {
      * identified by the parameter passed.
      *
      * @param character the Unicode character from which the width will be 
calculated
+     * @param size  the font size
      * @return the width of the character
      */
     public int getWidth(char character, int size) {
@@ -255,6 +260,7 @@ public class CharacterSet {
         try {
             nameBytes = name.getBytes(AFPConstants.EBCIDIC_ENCODING);
         } catch (UnsupportedEncodingException usee) {
+            // @SuppressFBWarnings("DM_DEFAULT_ENCODING")
             nameBytes = name.getBytes();
             LOG.warn(
                 "UnsupportedEncodingException translating the name " + name);

Modified: 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/CharacterSetBuilder.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/CharacterSetBuilder.java?rev=1679676&r1=1679675&r2=1679676&view=diff
==============================================================================
--- 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/CharacterSetBuilder.java
 (original)
+++ 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/CharacterSetBuilder.java
 Sat May 16 02:10:42 2015
@@ -46,9 +46,9 @@ import org.apache.fop.fonts.Typeface;
 
 /**
  * The CharacterSetBuilder is responsible building the a CharacterSet instance 
that holds
- *  the font metric data.  The data is either read from disk and passed to a 
CharacterSet (*)
- *  or a FopCharacterSet is instantiated that is composed of a Typeface 
instance configured
- *  with this data.<p/>
+ * the font metric data.  The data is either read from disk and passed to a 
CharacterSet (*)
+ * or a FopCharacterSet is instantiated that is composed of a Typeface 
instance configured
+ * with this data.<br>
  * -*- For referenced fonts CharacterSetBuilder is responsible for reading the 
font attributes
  * from binary code page files and the character set metric files. In IBM font 
structure, a
  * code page maps each character of text to the characters in a character set.
@@ -58,11 +58,10 @@ import org.apache.fop.fonts.Typeface;
  * outline pattern) of the character in the character set specified. The image
  * in the character set is the image that is printed in the document. To be a
  * valid code page for a particular character set, all character IDs in the 
code
- * page must be included in that character set. <p/>This class will read the
- * font information from the binary code page files and character set metric
- * files in order to determine the correct metrics to use when rendering the
- * formatted object. <p/>
- *
+ * page must be included in that character set.<br>
+ * This class will read the font information from the binary code page files 
and character
+ * set metric files in order to determine the correct metrics to use when 
rendering the
+ * formatted object.
  */
 public abstract class CharacterSetBuilder {
 
@@ -139,7 +138,7 @@ public abstract class CharacterSetBuilde
     /**
      * Returns an InputStream to a given file path and filename
      *
-     * * @param accessor the resource accessor
+     * @param accessor the resource accessor
      * @param uriStr the URI
      * @param eventProducer for handling AFP related events
      * @return an inputStream

Modified: 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/CharacterSetOrientation.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/CharacterSetOrientation.java?rev=1679676&r1=1679675&r2=1679676&view=diff
==============================================================================
--- 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/CharacterSetOrientation.java
 (original)
+++ 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/CharacterSetOrientation.java
 Sat May 16 02:10:42 2015
@@ -26,19 +26,18 @@ import java.awt.Rectangle;
  * of character shapes by defining their characteristics, which include
  * Font-Description information for identifying the characters, Font-Metric
  * information for positioning the characters, and Character-Shape
- * information for presenting the character images.
+ * information for presenting the character images.<br>
  *
  * Presenting a graphic character on a presentation surface requires
  * that you communicate this information clearly to rotate and position
- * characters correctly on the physical or logical page.
+ * characters correctly on the physical or logical page.<br>
  *
  * This class provides font metric information for a particular font
- * as by the orientation.
+ * as by the orientation.<br>
  *
  * This information is obtained directly from the AFP font files which must
  * be installed in the classpath under in the location specified by the path
  * attribute in the afp-font.xml file.
- * <p/>
  */
 public class CharacterSetOrientation {
 
@@ -83,7 +82,11 @@ public class CharacterSetOrientation {
     /**
      * Constructor for the CharacterSetOrientation, the orientation is
      * expressed as the degrees rotation (i.e 0, 90, 180, 270)
-     * @param orientation the character set orientation
+     *
+     * @param orientation   the character set orientation
+     * @param spaceIncrement    the space increment
+     * @param emSpaceIncrement  the em space increment
+     * @param nomCharIncrement  the nominal character increment
      */
     public CharacterSetOrientation(int orientation, int spaceIncrement, int 
emSpaceIncrement,
             int nomCharIncrement) {
@@ -131,14 +134,18 @@ public class CharacterSetOrientation {
     }
 
     /**
-     * TODO
+     * {@asf.todo}
+     *
+     * @return  the underscore width
      */
     public int getUnderscoreWidth() {
         return underscoreWidth;
     }
 
     /**
-     * TODO
+     * {@asf.todo}
+     *
+     * @return  the underscore position
      */
     public int getUnderscorePosition() {
         return underscorePosition;
@@ -165,6 +172,7 @@ public class CharacterSetOrientation {
      * Get the width (in 1/1000ths of a point size) of the character
      * identified by the parameter passed.
      * @param character the Unicode character to evaluate
+     * @param size  the font size
      * @return the widths of the character
      */
     public int getWidth(char character, int size) {
@@ -180,6 +188,7 @@ public class CharacterSetOrientation {
      * Get the character box (rectangle with dimensions in 1/1000ths of a 
point size) of the character
      * identified by the parameter passed.
      * @param character the Unicode character to evaluate
+     * @param size  the font size
      * @return the character box
      */
     public Rectangle getCharacterBox(char character, int size) {
@@ -258,6 +267,7 @@ public class CharacterSetOrientation {
      * identified by the parameter passed.
      * @param character the Unicode character for which the width is being set
      * @param width the widths of the character
+     * @param   characterBox    the character box
      */
     public void setCharacterMetrics(char character, int width, Rectangle 
characterBox) {
         characterMetrics.put((int) character, new CharacterMetrics(width, 
characterBox));

Modified: 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/DoubleByteFont.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/DoubleByteFont.java?rev=1679676&r1=1679675&r2=1679676&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/DoubleByteFont.java 
(original)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/DoubleByteFont.java 
Sat May 16 02:10:42 2015
@@ -30,10 +30,10 @@ import org.apache.commons.logging.LogFac
 import org.apache.fop.afp.AFPEventProducer;
 
 /**
- * Implementation of AbstractOutlineFont that supports double-byte fonts (CID 
Keyed font (Type 0)).
+ * Implementation of {@link AbstractOutlineFont} that supports double-byte 
fonts (CID Keyed font (Type 0)).
  * The width of characters that are not prescribed a width metrics in the font 
resource use
  * a fallback width.  The default width is 1 em.  A character can be supplied 
and queried for the
- *  fallback width of all non-ideograph characters.<p />
+ * fallback width of all non-ideograph characters.
  */
 public class DoubleByteFont extends AbstractOutlineFont {
 

Modified: 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/FontRuntimeException.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/FontRuntimeException.java?rev=1679676&r1=1679675&r2=1679676&view=diff
==============================================================================
--- 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/FontRuntimeException.java
 (original)
+++ 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/FontRuntimeException.java
 Sat May 16 02:10:42 2015
@@ -21,7 +21,6 @@ package org.apache.fop.afp.fonts;
 
 /**
  * A runtime exception for handling fatal errors in processing fonts.
- * <p/>
  */
 public class FontRuntimeException extends RuntimeException {
 

Modified: 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/FopCharacterSet.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/FopCharacterSet.java?rev=1679676&r1=1679675&r2=1679676&view=diff
==============================================================================
--- 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/FopCharacterSet.java 
(original)
+++ 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/FopCharacterSet.java 
Sat May 16 02:10:42 2015
@@ -26,7 +26,7 @@ import org.apache.fop.afp.util.AFPResour
 import org.apache.fop.fonts.Typeface;
 
 /**
- * A Character set for a normal FOP font<p/>
+ * A Character set for a normal FOP font
  */
 public class FopCharacterSet extends CharacterSet {
 

Modified: 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/RasterFont.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/RasterFont.java?rev=1679676&r1=1679675&r2=1679676&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/RasterFont.java 
(original)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/fonts/RasterFont.java Sat 
May 16 02:10:42 2015
@@ -32,8 +32,7 @@ import org.apache.commons.logging.LogFac
  * A font where each character is stored as an array of pixels (a bitmap). Such
  * fonts are not easily scalable, in contrast to vectored fonts. With this type
  * of font, the font metrics information is held in character set files (one 
for
- * each size and style). <p/>
- *
+ * each size and style).
  */
 public class RasterFont extends AFPFont {
 
@@ -49,8 +48,8 @@ public class RasterFont extends AFPFont
      * Constructor for the raster font requires the name, weight and style
      * attribute to be available as this forms the key to the font.
      *
-     * @param name
-     *            the name of the font
+     * @param name the name of the font
+     * @param embeddable {@code true} if the font is embeddable
      */
     public RasterFont(String name, boolean embeddable) {
         super(name, embeddable);

Modified: 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/modca/AbstractNamedAFPObject.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/modca/AbstractNamedAFPObject.java?rev=1679676&r1=1679675&r2=1679676&view=diff
==============================================================================
--- 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/modca/AbstractNamedAFPObject.java
 (original)
+++ 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/modca/AbstractNamedAFPObject.java
 Sat May 16 02:10:42 2015
@@ -82,6 +82,7 @@ public abstract class AbstractNamedAFPOb
         try {
             nameBytes = name.getBytes(AFPConstants.EBCIDIC_ENCODING);
         } catch (UnsupportedEncodingException usee) {
+            // @SuppressFBWarnings("DM_DEFAULT_ENCODING")
             nameBytes = name.getBytes();
             LOG.warn(
                 "Constructor:: UnsupportedEncodingException translating the 
name "

Modified: 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/modca/IMImageObject.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/modca/IMImageObject.java?rev=1679676&r1=1679675&r2=1679676&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/modca/IMImageObject.java 
(original)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/modca/IMImageObject.java 
Sat May 16 02:10:42 2015
@@ -38,7 +38,6 @@ import org.apache.fop.afp.ioca.ImageRast
  * structured field that defines the position of the image cell relative to
  * the origin of the entire image. Each ICP also specifies the size of the
  * image cell and a fill rectangle into which the cell is replicated.
- * <p/>
  */
 public class IMImageObject extends AbstractNamedAFPObject {
 

Modified: 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/modca/TagLogicalElement.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/modca/TagLogicalElement.java?rev=1679676&r1=1679675&r2=1679676&view=diff
==============================================================================
--- 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/modca/TagLogicalElement.java 
(original)
+++ 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/modca/TagLogicalElement.java 
Sat May 16 02:10:42 2015
@@ -45,7 +45,6 @@ import org.apache.fop.afp.util.BinaryUti
  * embedded in, the same page or page group. The Tag Logical Element structured
  * field does not provide any presentation specifications and therefore has no
  * effect on the appearance of a document when it is presented.
- * <p/>
  */
 public class TagLogicalElement extends AbstractTripletStructuredObject {
 

Modified: 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/modca/triplets/AttributeValueTriplet.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/modca/triplets/AttributeValueTriplet.java?rev=1679676&r1=1679675&r2=1679676&view=diff
==============================================================================
--- 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/modca/triplets/AttributeValueTriplet.java
 (original)
+++ 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/modca/triplets/AttributeValueTriplet.java
 Sat May 16 02:10:42 2015
@@ -53,7 +53,6 @@ public class AttributeValueTriplet exten
         try {
             tleByteValue = attVal.getBytes(AFPConstants.EBCIDIC_ENCODING);
         } catch (UnsupportedEncodingException usee) {
-            tleByteValue = attVal.getBytes();
             throw new IllegalArgumentException(attVal + " encoding failed");
         }
         System.arraycopy(tleByteValue, 0, data, 4, tleByteValue.length);

Modified: 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/svg/AFPBridgeContext.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/svg/AFPBridgeContext.java?rev=1679676&r1=1679675&r2=1679676&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/svg/AFPBridgeContext.java 
(original)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/svg/AFPBridgeContext.java 
Sat May 16 02:10:42 2015
@@ -57,6 +57,7 @@ public class AFPBridgeContext extends Ab
      * @param linkTransform AffineTransform to properly place links,
      *                      may be null
      * @param g2d an AFPGraphics 2D implementation
+     * @param eventBroadCaster the associated event broadcaster
      */
     public AFPBridgeContext(UserAgent userAgent, FontInfo fontInfo,
             ImageManager imageManager, ImageSessionContext imageSessionContext,

Modified: 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/svg/AFPTextElementBridge.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/svg/AFPTextElementBridge.java?rev=1679676&r1=1679675&r2=1679676&view=diff
==============================================================================
--- 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/svg/AFPTextElementBridge.java 
(original)
+++ 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/svg/AFPTextElementBridge.java 
Sat May 16 02:10:42 2015
@@ -24,14 +24,14 @@ import org.apache.batik.bridge.TextPaint
 import org.apache.fop.svg.AbstractFOPTextElementBridge;
 
 /**
- * Bridge class for the &lt;text> element.
+ * Bridge class for the &lt;text&gt; element.
  * This bridge will use the direct text painter if the text
  * for the element is simple.
  */
 public class AFPTextElementBridge extends AbstractFOPTextElementBridge {
 
     /**
-     * Constructs a new bridge for the &lt;text> element.
+     * Constructs a new bridge for the &lt;text&gt; element.
      *
      * @param textPainter the text painter to use
      */

Modified: 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/svg/AFPTextPainter.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/svg/AFPTextPainter.java?rev=1679676&r1=1679675&r2=1679676&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/svg/AFPTextPainter.java 
(original)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/svg/AFPTextPainter.java 
Sat May 16 02:10:42 2015
@@ -41,6 +41,7 @@ public class AFPTextPainter extends Abst
     /**
      * Create a new text painter with the given font information.
      * @param nativeTextHandler the NativeTextHandler instance used for text 
painting
+     * @param fopFontFamilyResolver the font resolver
      */
     public AFPTextPainter(FOPTextHandler nativeTextHandler, FontFamilyResolver 
fopFontFamilyResolver) {
         super(nativeTextHandler, new 
FOPStrokingTextPainter(fopFontFamilyResolver));

Modified: 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/util/AFPResourceUtil.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/util/AFPResourceUtil.java?rev=1679676&r1=1679675&r2=1679676&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/util/AFPResourceUtil.java 
(original)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/util/AFPResourceUtil.java 
Sat May 16 02:10:42 2015
@@ -46,13 +46,12 @@ import org.apache.fop.afp.parser.Unparse
  * components and to provide commands and information to applications using
  * the data. Structured fields may contain one or more parameters. Each
  * parameter provides one value from a set of values defined by the 
architecture.
- * <p/>
+ * <br>
  * MO:DCA structured fields consist of two parts: an introducer that identifies
  * the length and type of the structured field, and data that provides the
  * structured field's effect. The data is contained in a set of parameters,
  * which can consist of other data structures and data elements. The maximum
  * length of a structured field is 32767 bytes.
- * <p/>
  */
 public final class AFPResourceUtil {
 

Modified: 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/util/DTDEntityResolver.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/util/DTDEntityResolver.java?rev=1679676&r1=1679675&r2=1679676&view=diff
==============================================================================
--- 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/util/DTDEntityResolver.java 
(original)
+++ 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/util/DTDEntityResolver.java 
Sat May 16 02:10:42 2015
@@ -28,11 +28,10 @@ import org.xml.sax.InputSource;
 import org.apache.fop.afp.fonts.FontRuntimeException;
 
 /**
- * An entity resolver for both DOM and SAX models of the SAX document.
- * <p>
+ * An entity resolver for both DOM and SAX models of the SAX document.<br>
  * The entity resolver only handles queries for the DTD. It will find any URI
  * with a recognised public id and return an {@link org.xml.sax.InputSource}.
- * <p>
+ * <br>
  *
  * <p>This work was authored by Joe Schmetzer ([email protected]).</p>
  */

Modified: 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/util/StructuredFieldReader.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/util/StructuredFieldReader.java?rev=1679676&r1=1679675&r2=1679676&view=diff
==============================================================================
--- 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/util/StructuredFieldReader.java
 (original)
+++ 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/util/StructuredFieldReader.java
 Sat May 16 02:10:42 2015
@@ -30,13 +30,12 @@ import java.io.InputStream;
  * components and to provide commands and information to applications using
  * the data. Structured fields may contain one or more parameters. Each
  * parameter provides one value from a set of values defined by the 
architecture.
- * <p/>
+ * <br>
  * MO:DCA structured fields consist of two parts: an introducer that identifies
  * the length and type of the structured field, and data that provides the
  * structured field's effect. The data is contained in a set of parameters,
  * which can consist of other data structures and data elements. The maximum
  * length of a structured field is 32767 bytes.
- * <p/>
  */
 public class StructuredFieldReader {
 



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

Reply via email to