[FOray-commit] SF.net SVN: foray: [7306] trunk/foray/foray-areatree/src/java/org/foray/area
Modular XSL-FO Implementation for Java.
Status: Alpha
Brought to you by:
victormote
|
From: <vic...@us...> - 2006-05-29 18:55:59
|
Revision: 7306 Author: victormote Date: 2006-05-29 11:55:44 -0700 (Mon, 29 May 2006) ViewCVS: http://svn.sourceforge.net/foray/?rev=7306&view=rev Log Message: ----------- Conform to axsl changes. Modified Paths: -------------- trunk/foray/foray-areatree/src/java/org/foray/area/BeforeFloatRA.java trunk/foray/foray-areatree/src/java/org/foray/area/RegionRABody.java Modified: trunk/foray/foray-areatree/src/java/org/foray/area/BeforeFloatRA.java =================================================================== --- trunk/foray/foray-areatree/src/java/org/foray/area/BeforeFloatRA.java 2006-05-29 18:42:45 UTC (rev 7305) +++ trunk/foray/foray-areatree/src/java/org/foray/area/BeforeFloatRA.java 2006-05-29 18:55:44 UTC (rev 7306) @@ -31,7 +31,8 @@ * Manages the before-float-reference-area. Its parent should always be an * instance of RegionRABody. */ -public class BeforeFloatRA extends AreaFixed { +public class BeforeFloatRA extends AreaFixed + implements org.axsl.areaW.BeforeFloatRA { public BeforeFloatRA(FObj generatedBy, RegionRABody parentArea) { super(generatedBy, parentArea); Modified: trunk/foray/foray-areatree/src/java/org/foray/area/RegionRABody.java =================================================================== --- trunk/foray/foray-areatree/src/java/org/foray/area/RegionRABody.java 2006-05-29 18:42:45 UTC (rev 7305) +++ trunk/foray/foray-areatree/src/java/org/foray/area/RegionRABody.java 2006-05-29 18:55:44 UTC (rev 7306) @@ -69,14 +69,10 @@ return mainReferenceArea; } - public BeforeFloatRA getBeforeFloatReferenceArea() { - return beforeFloatReferenceArea; + public org.axsl.areaW.BeforeFloatRA getWritableBeforeFloatRA() { + return this.beforeFloatReferenceArea; } - public FootnoteRA getFootnoteReferenceArea() { - return footnoteReferenceArea; - } - public org.axsl.areaW.FootnoteRA getWritableFootnoteReferenceArea() { return footnoteReferenceArea; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |