Revision: 7591
Author: victormote
Date: 2006-06-14 11:49:10 -0700 (Wed, 14 Jun 2006)
ViewCVS: http://svn.sourceforge.net/foray/?rev=7591&view=rev
Log Message:
-----------
Conform to axsl change: Add method to get the before-float separator.
Modified Paths:
--------------
trunk/foray/foray-fotree/src/java/org/foray/fotree/fo/obj/PageSequence.java
Modified: trunk/foray/foray-fotree/src/java/org/foray/fotree/fo/obj/PageSequence.java
===================================================================
--- trunk/foray/foray-fotree/src/java/org/foray/fotree/fo/obj/PageSequence.java 2006-06-14 18:32:39 UTC (rev 7590)
+++ trunk/foray/foray-fotree/src/java/org/foray/fotree/fo/obj/PageSequence.java 2006-06-14 18:49:10 UTC (rev 7591)
@@ -140,11 +140,24 @@
return (StaticContent) flowMap.get(regionName);
}
+ /**
+ * {@inheritDoc}
+ */
public org.axsl.foR.fo.StaticContent getStaticContent(
org.axsl.foR.fo.Region region) {
return getStaticContent(region.traitRegionName());
}
+ /**
+ * {@inheritDoc}
+ */
+ public org.axsl.foR.fo.StaticContent getBeforeFloatSeparator() {
+ return getStaticContent("xsl-before-float-separator");
+ }
+
+ /**
+ * {@inheritDoc}
+ */
public org.axsl.foR.fo.StaticContent getFootnoteSeparator() {
return getStaticContent("xsl-footnote-separator");
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|