diff options
author | Finn Bock <bckfnn@apache.org> | 2004-10-29 11:19:37 +0000 |
---|---|---|
committer | Finn Bock <bckfnn@apache.org> | 2004-10-29 11:19:37 +0000 |
commit | 0023af509db52c0d16d068c453f9cd98e20adee8 (patch) | |
tree | c3f3327e2ab0a8e6d01a1c73bce612ec0e133a27 /src/java/org/apache/fop/fo/flow/PageNumberCitation.java | |
parent | 28c23bbe5296b052905d7f61313d26828f1a9376 (diff) | |
download | xmlgraphics-fop-0023af509db52c0d16d068c453f9cd98e20adee8.tar.gz xmlgraphics-fop-0023af509db52c0d16d068c453f9cd98e20adee8.zip |
More properties implemented.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198112 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/flow/PageNumberCitation.java')
-rw-r--r-- | src/java/org/apache/fop/fo/flow/PageNumberCitation.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/java/org/apache/fop/fo/flow/PageNumberCitation.java b/src/java/org/apache/fop/fo/flow/PageNumberCitation.java index 03d7a318d..e9d0ed5c2 100644 --- a/src/java/org/apache/fop/fo/flow/PageNumberCitation.java +++ b/src/java/org/apache/fop/fo/flow/PageNumberCitation.java @@ -63,13 +63,13 @@ public class PageNumberCitation extends FObj { // private ToBeImplementedProperty letterSpacing; private Length lineHeight; private String refId; - // private ToBeImplementedProperty scoreSpaces; + private int scoreSpaces; private Length textAltitude; private int textDecoration; private Length textDepth; // private ToBeImplementedProperty textShadow; private int textTransform; - // private ToBeImplementedProperty visibility; + private int visibility; private SpaceProperty wordSpacing; private int wrapOption; // End of property values @@ -101,13 +101,13 @@ public class PageNumberCitation extends FObj { // letterSpacing = pList.get(PR_LETTER_SPACING); lineHeight = pList.get(PR_LINE_HEIGHT).getLength(); refId = pList.get(PR_REF_ID).getString(); - // scoreSpaces = pList.get(PR_SCORE_SPACES); + scoreSpaces = pList.get(PR_SCORE_SPACES).getEnum(); textAltitude = pList.get(PR_TEXT_ALTITUDE).getLength(); textDecoration = pList.get(PR_TEXT_DECORATION).getEnum(); textDepth = pList.get(PR_TEXT_DEPTH).getLength(); // textShadow = pList.get(PR_TEXT_SHADOW); textTransform = pList.get(PR_TEXT_TRANSFORM).getEnum(); - // visibility = pList.get(PR_VISIBILITY); + visibility = pList.get(PR_VISIBILITY).getEnum(); wordSpacing = pList.get(PR_WORD_SPACING).getSpace(); wrapOption = pList.get(PR_WRAP_OPTION).getEnum(); } |