Revision: 12242
http://sourceforge.net/p/foray/code/12242
Author: victormote
Date: 2021-12-19 16:18:02 +0000 (Sun, 19 Dec 2021)
Log Message:
-----------
Implement FoAllProperties, in preparation for removing that implementation from aXSL Fo interface.
Modified Paths:
--------------
trunk/foray/foray-fotree/src/main/java/org/foray/fotree/FoObj.java
Modified: trunk/foray/foray-fotree/src/main/java/org/foray/fotree/FoObj.java
===================================================================
--- trunk/foray/foray-fotree/src/main/java/org/foray/fotree/FoObj.java 2021-12-19 15:14:24 UTC (rev 12241)
+++ trunk/foray/foray-fotree/src/main/java/org/foray/fotree/FoObj.java 2021-12-19 16:18:02 UTC (rev 12242)
@@ -125,6 +125,7 @@
import org.axsl.font.FontConsumer;
import org.axsl.font.FontUse;
import org.axsl.fotree.Fo;
+import org.axsl.fotree.FoAllProperties;
import org.axsl.fotree.FoContext;
import org.axsl.fotree.FoInlineContext;
import org.axsl.fotree.FoTreeException;
@@ -154,7 +155,7 @@
* Base class for formatting objects.
*/
public abstract class FoObj extends AbstractOrderedTreeNode<FoObj>
- implements Fo, ParaConfig, AbstractOrderedTreeNode.Convertible<FoObj> {
+ implements Fo, FoAllProperties, ParaConfig, AbstractOrderedTreeNode.Convertible<FoObj> {
/** A static empty and immutable list of children, suitable for return by objects that have no children. */
protected static final List<FoObj> EMPTY_CHILD_LIST = Collections.emptyList();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|