]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Added getDecorations().
authorPeter Bernard West <pbwest@apache.org>
Sat, 29 May 2004 18:53:15 +0000 (18:53 +0000)
committerPeter Bernard West <pbwest@apache.org>
Sat, 29 May 2004 18:53:15 +0000 (18:53 +0000)
MAde getFontAtrtributes() public.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP_0-20-0_Alt-Design@197656 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/fo/FOPageSeqNode.java

index 15b7ff3edf2981bb936e423bda802ae318e5252a..9599040adc82a01fb07a70a3677b6096e94ccaeb 100644 (file)
@@ -61,6 +61,13 @@ public class FOPageSeqNode extends FONode {
     /** Decorations applicable to generated text. See 7.16.4 "text-decoration"
      * in the Recommendation.*/
     protected TextDecorations decorations = null;
+    /**
+     * Gets the current <code>TextDecorations</code> object
+     * @return the decorations
+     */
+    public TextDecorations getDecorations() {
+        return decorations;
+    }
     
     /**
      * @param foTree the FO tree to which this node is added
@@ -305,7 +312,7 @@ public class FOPageSeqNode extends FONode {
      * @throws PropertyException
      * @throws FontException
      */
-    protected Map getFontAttributes() throws PropertyException, FontException {
+    public Map getFontAttributes() throws PropertyException, FontException {
         int pvtype;
         Numeric fontSize = null;
         PropertyValue pv = getPropertyValue(PropNames.FONT_STYLE);