]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Additional helper functions
authorJeremias Maerki <jeremias@apache.org>
Tue, 25 Jan 2005 10:42:06 +0000 (10:42 +0000)
committerJeremias Maerki <jeremias@apache.org>
Tue, 25 Jan 2005 10:42:06 +0000 (10:42 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198312 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/area/Area.java

index 2d32baedceef620ccd9050d23f54bca216b2ec07..e8848dc7b6a1361ddcddb90952fdc1f53aa9e6e2 100644 (file)
@@ -342,6 +342,11 @@ public class Area implements Serializable {
         return this.props;
     }
 
+    /** @return true if the area has traits */
+    public boolean hasTraits() {
+        return (this.props != null);
+    }
+    
     /**
      * Get a trait from this area.
      *
@@ -351,6 +356,20 @@ public class Area implements Serializable {
     public Object getTrait(Object oTraitCode) {
         return (props != null ? props.get(oTraitCode) : null);
     }
+    
+    /**
+     * Get a boolean trait from this area.
+     * @param oTraitCode the trait key
+     * @return the trait value
+     */
+    public boolean getBooleanTrait(Object oTraitCode) {
+        final Object obj = getTrait(oTraitCode);
+        if (obj instanceof Boolean) {
+            return ((Boolean)obj).booleanValue();
+        } else {
+            return false;
+        }
+    }
 
     /**
      * Get a trait from this area as an integer.