[FOray-commit] SF.net SVN: foray: [10032] trunk/foray
Modular XSL-FO Implementation for Java.
Status: Alpha
Brought to you by:
victormote
|
From: <vic...@us...> - 2007-07-18 16:08:01
|
Revision: 10032
http://svn.sourceforge.net/foray/?rev=10032&view=rev
Author: victormote
Date: 2007-07-18 09:07:58 -0700 (Wed, 18 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-18 15:46:57 UTC (rev 10031)
+++ trunk/foray/foray-areatree/src/java/org/foray/area/Area.java 2007-07-18 16:07:58 UTC (rev 10032)
@@ -38,7 +38,6 @@
import org.axsl.common.value.Baseline;
import org.axsl.common.value.DisplayAlign;
import org.axsl.common.value.LinkType;
-import org.axsl.common.value.ReferenceOrientation;
import org.axsl.common.value.RelativeAxis;
import org.axsl.common.value.TextAlign;
import org.axsl.common.value.WhiteSpaceTreatment;
@@ -1014,14 +1013,6 @@
}
/**
- * Returns the reference-orientation trait for this area.
- * @return The reference-orientation trait for this area.
- */
- public ReferenceOrientation traitReferenceOrientation() {
- return traitGeneratedBy().traitReferenceOrientation(this);
- }
-
- /**
* Returns the cumulative reference orientation for this area.
* @return The cumulative reference orientation for this area, in degrees.
*/
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-18 15:46:57 UTC (rev 10031)
+++ trunk/foray/foray-fotree/src/java/org/foray/fotree/FObj.java 2007-07-18 16:07:58 UTC (rev 10032)
@@ -108,6 +108,7 @@
import org.axsl.fo.fo.prop.CaptionSidePa;
import org.axsl.fo.fo.prop.CaseNamePa;
import org.axsl.fo.fo.prop.CaseTitlePa;
+import org.axsl.fo.fo.prop.ClearPa;
import org.axsl.fo.fo.prop.ClipPa;
import org.axsl.fo.fo.prop.ColorProfileNamePa;
import org.axsl.fo.fo.prop.ColumnCountPa;
@@ -134,6 +135,7 @@
import org.axsl.fo.fo.prop.MediaUsagePa;
import org.axsl.fo.fo.prop.NumberColumnsRepeatedPa;
import org.axsl.fo.fo.prop.PageDimensionPa;
+import org.axsl.fo.fo.prop.ReferenceOrientationPa;
import org.axsl.fo.fo.prop.RenderingIntentPa;
import org.axsl.fo.fo.prop.StartingStatePa;
import org.axsl.fo.fo.prop.SuppressAtLineBreakPa;
@@ -143,6 +145,7 @@
import org.axsl.fo.fo.prop.TextShadowPa;
import org.axsl.fo.fo.prop.TreatAsWordSpacePa;
import org.axsl.fo.fo.prop.UnicodeBidiPa;
+import org.axsl.fo.fo.prop.VisibilityPa;
import org.axsl.fo.fo.prop.ZIndexPa;
import org.axsl.font.Font;
import org.axsl.font.FontConsumer;
@@ -167,17 +170,16 @@
CommonAuralPa, CommonBorderPaddingBgPa, CommonFontPa,
CommonHyphenationPa, CommonMarginBlockPa, CommonMarginInlinePa,
CommonRelativePositionPa, ActiveStatePa, AutoRestorePa, BasicLinkPa,
- BlockPa,
- CaptionSidePa, CaseNamePa,
- CaseTitlePa, ClipPa, ColorProfileNamePa, ColumnCountPa, ColumnGapPa,
+ BlockPa, CaptionSidePa, CaseNamePa, CaseTitlePa, ClearPa, ClipPa,
+ ColorProfileNamePa, ColumnCountPa, ColumnGapPa,
DirectionPa, EmptyCellsPa, ExtentPa,
ExternalDestinationPa, FloatPa, FlowNamePa, GlyphOrientationPa,
InternalDestinationPa, LeaderPa, ListBlockPa,
MediaUsagePa, NumberColumnsRepeatedPa,
- PageDimensionPa, RenderingIntentPa,
+ PageDimensionPa, ReferenceOrientationPa, RenderingIntentPa,
StartingStatePa, SuppressAtLineBreakPa, SwitchToPa,
TableBorderPrecedencePa, TablePa, TextShadowPa, TreatAsWordSpacePa,
- UnicodeBidiPa,
+ UnicodeBidiPa, VisibilityPa,
ZIndexPa {
/** A static empty and immutable list of children, suitable for return by
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|