[FOray-commit] SF.net SVN: foray: [10063] trunk/foray
Modular XSL-FO Implementation for Java.
Status: Alpha
Brought to you by:
victormote
|
From: <vic...@us...> - 2007-07-20 16:24:08
|
Revision: 10063
http://svn.sourceforge.net/foray/?rev=10063&view=rev
Author: victormote
Date: 2007-07-20 09:24:08 -0700 (Fri, 20 Jul 2007)
Log Message:
-----------
Conform to axsl changes moving methods from Fo to new property-specific interfaces.
Modified Paths:
--------------
trunk/foray/foray-areatree/src/java/org/foray/area/Area.java
trunk/foray/foray-fotree/src/java/org/foray/fotree/FObj.java
Modified: trunk/foray/foray-areatree/src/java/org/foray/area/Area.java
===================================================================
--- trunk/foray/foray-areatree/src/java/org/foray/area/Area.java 2007-07-20 16:13:18 UTC (rev 10062)
+++ trunk/foray/foray-areatree/src/java/org/foray/area/Area.java 2007-07-20 16:24:08 UTC (rev 10063)
@@ -974,22 +974,6 @@
}
/**
- * Returns the text-altitude trait for this Area.
- * @return The text-altitude trait.
- */
- public int traitTextAltitude() {
- return this.traitGeneratedBy().traitTextAltitude(this);
- }
-
- /**
- * Returns the text-depth trait for this Area.
- * @return The text-depth trait.
- */
- public int traitTextDepth() {
- return this.traitGeneratedBy().traitTextDepth(this);
- }
-
- /**
* Indicates whether there is an absolute fence preceding this Area for
* purposes of stacking constraints.
* This method is only relevant for block-areas as inline-areas have a more
Modified: trunk/foray/foray-fotree/src/java/org/foray/fotree/FObj.java
===================================================================
--- trunk/foray/foray-fotree/src/java/org/foray/fotree/FObj.java 2007-07-20 16:13:18 UTC (rev 10062)
+++ trunk/foray/foray-fotree/src/java/org/foray/fotree/FObj.java 2007-07-20 16:24:08 UTC (rev 10063)
@@ -168,7 +168,9 @@
import org.axsl.fo.fo.prop.SwitchToPa;
import org.axsl.fo.fo.prop.TableBorderPrecedencePa;
import org.axsl.fo.fo.prop.TablePa;
+import org.axsl.fo.fo.prop.TextAltitudePa;
import org.axsl.fo.fo.prop.TextDecorationPa;
+import org.axsl.fo.fo.prop.TextDepthPa;
import org.axsl.fo.fo.prop.TextShadowPa;
import org.axsl.fo.fo.prop.TreatAsWordSpacePa;
import org.axsl.fo.fo.prop.UnicodeBidiPa;
@@ -220,7 +222,8 @@
RenderingIntentPa,
ScoreSpacesPa, SpanPa, SrcPa, StartingStatePa, SuppressAtLineBreakPa,
SwitchToPa,
- TableBorderPrecedencePa, TablePa, TextDecorationPa, TextShadowPa,
+ TableBorderPrecedencePa, TablePa, TextAltitudePa, TextDecorationPa,
+ TextDepthPa, TextShadowPa,
TreatAsWordSpacePa,
UnicodeBidiPa, VisibilityPa, WrapOptionPa,
ZIndexPa {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|