]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Fixed checkstyle issues
authorAdrian Cumiskey <acumiskey@apache.org>
Wed, 5 Dec 2007 17:21:15 +0000 (17:21 +0000)
committerAdrian Cumiskey <acumiskey@apache.org>
Wed, 5 Dec 2007 17:21:15 +0000 (17:21 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@601424 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/render/afp/extensions/AFPAttribute.java
src/java/org/apache/fop/render/afp/extensions/AFPElementMapping.java
src/java/org/apache/fop/render/afp/extensions/AFPExtensionHandler.java

index 2b5666e26de7a9f07025d99acd1e3231d177283c..665a77562c9433d8c189b02c81985c1627ea10fc 100755 (executable)
@@ -36,7 +36,7 @@ public class AFPAttribute extends StringProperty.Maker {
     /**
      * The attribute property.
      */
-    private Property _property;
+    private Property property;
 
     /**
      * Constructor for the AFPAttribute.
@@ -44,7 +44,7 @@ public class AFPAttribute extends StringProperty.Maker {
      */
     protected AFPAttribute(String name) {
         super(0);
-        _property = null;
+        property = null;
     }
 
     /**
@@ -53,10 +53,10 @@ public class AFPAttribute extends StringProperty.Maker {
      * @return property The property object.
      */
     public Property make(PropertyList propertyList) {
-        if (_property == null) {
-            _property = make(propertyList, "", propertyList.getParentFObj());
+        if (property == null) {
+            property = make(propertyList, "", propertyList.getParentFObj());
         }
-        return _property;
+        return property;
     }
 
 }
\ No newline at end of file
index b58bff29018ce52443ae14026815d074a5f4a50a..216379cc06e4240fba53fa8ee8706642cdf31aba 100755 (executable)
@@ -35,14 +35,19 @@ import org.apache.fop.fo.FONode;
  */
 public class AFPElementMapping extends ElementMapping {
 
+    /** page element */
     public static final String PAGE = "page";
 
+    /** page group element */
     public static final String PAGE_GROUP = "page-group";
 
+    /** tag logical element */
     public static final String TAG_LOGICAL_ELEMENT = "tag-logical-element";
 
+    /** include page overlay element */
     public static final String INCLUDE_PAGE_OVERLAY = "include-page-overlay";
 
+    /** include page segment element */
     public static final String INCLUDE_PAGE_SEGMENT = "include-page-segment";
 
     /** NOP */
index 8318488bfecd40797d91374051efd1693057e81b..cc99295fb4c451b798a8c2f958eaa95c0a41114c 100644 (file)
@@ -114,8 +114,8 @@ public class AFPExtensionHandler extends DefaultHandler
     /**\r
      * {@inheritDoc}\r
      */\r
-    public void setObjectBuiltListener(ObjectBuiltListener listener) {\r
-        this.listener = listener;\r
+    public void setObjectBuiltListener(ObjectBuiltListener listen) {\r
+        this.listener = listen;\r
     }\r
 \r
 }\r