]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Fix an forgotten change of type in class Area and a checkstyle error in class FObj
authorSimon Pepping <spepping@apache.org>
Thu, 27 Jan 2011 15:34:12 +0000 (15:34 +0000)
committerSimon Pepping <spepping@apache.org>
Thu, 27 Jan 2011 15:34:12 +0000 (15:34 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1064159 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/area/Area.java
src/java/org/apache/fop/fo/FObj.java
src/java/org/apache/fop/layoutmgr/TraitSetter.java

index b1e27a1eb5b19614c1c3949fb9e0388af4875069..1f14ed740c872a9f90e2d90823a3e8085d79e422 100644 (file)
@@ -378,11 +378,11 @@ public class Area extends AreaTreeObject implements Serializable {
      * @param traitCode the trait key
      * @param prop the value of the trait
      */
-    public void addTrait(Object traitCode, Object prop) {
+    public void addTrait(Integer traitCode, Object prop) {
         if (props == null) {
             props = new java.util.HashMap<Integer, Object>(20);
         }
-        props.put((Integer)traitCode, prop);
+        props.put(traitCode, prop);
     }
 
     /**
index 66bf1a15d637243171e94eed040c4d2365c9028e..98661b8b6e4f366f959fbead10051a540e2a7d1f 100644 (file)
@@ -47,10 +47,10 @@ public abstract class FObj extends FONode implements Constants {
     private static final PropertyMaker[] PROPERTY_LIST_TABLE
                             = FOPropertyMapping.getGenericMappings();
 
-    /**
-     * pointer to the descendant subtree
-     */
+    /** pointer to the descendant subtree */
     protected FONode firstChild;
+
+    /** pointer to the end of the descendant subtree */
     protected FONode lastChild;
 
     /** The list of extension attachments, null if none */
index 6039ad941a88a5ad0810b62c801ff1773eff87ef..ff0e70811681e6a84a46084f013065bb401150b9 100644 (file)
@@ -104,10 +104,10 @@ public final class TraitSetter {
     private static void addBorderTrait(Area area,
                                        CommonBorderPaddingBackground bpProps,
                                        boolean bDiscard, int iSide, int mode,
-                                       Object oTrait) {
+                                       Integer trait) {
         int iBP = bpProps.getBorderWidth(iSide, bDiscard);
         if (iBP > 0) {
-            area.addTrait(oTrait,
+            area.addTrait(trait,
                     new BorderProps(bpProps.getBorderStyle(iSide),
                             iBP, bpProps.getBorderColor(iSide),
                             mode));