[aXSL-commit] SF.net SVN: axsl: [529] trunk/axsl/axsl-area-w/src/java/org/axsl/areaW
An API for XSL-FO.
Status: Alpha
Brought to you by:
victormote
|
From: <vic...@us...> - 2006-05-08 17:52:35
|
Revision: 529 Author: victormote Date: 2006-05-07 11:10:54 -0700 (Sun, 07 May 2006) ViewCVS: http://svn.sourceforge.net/axsl/?rev=529&view=rev Log Message: ----------- Fix some of the Area hierarchies. Modified Paths: -------------- trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/AreaTree.java trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/LineArea.java Added Paths: ----------- trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/BlockArea.java Modified: trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/AreaTree.java =================================================================== --- trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/AreaTree.java 2006-05-07 17:55:19 UTC (rev 528) +++ trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/AreaTree.java 2006-05-07 18:10:54 UTC (rev 529) @@ -28,7 +28,7 @@ /** * An AreaTree is a document that has been laid out on pages. */ -public interface AreaTree { +public interface AreaTree extends AreaNode { public PageCollection makePageCollection(PageSequence pageSequence) ; Added: trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/BlockArea.java =================================================================== --- trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/BlockArea.java (rev 0) +++ trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/BlockArea.java 2006-05-07 18:10:54 UTC (rev 529) @@ -0,0 +1,25 @@ +/* + * Copyright 2006 The aXSL Project. + * http://www.axsl.org + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +/* $Id$ */ + +package org.axsl.areaW; + +public interface BlockArea extends AreaFlexible { + +} Property changes on: trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/BlockArea.java ___________________________________________________________________ Name: svn:keywords + "Author Id Rev Date URL" Name: svn:eol-style + native Modified: trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/LineArea.java =================================================================== --- trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/LineArea.java 2006-05-07 17:55:19 UTC (rev 528) +++ trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/LineArea.java 2006-05-07 18:10:54 UTC (rev 529) @@ -23,7 +23,7 @@ import org.axsl.fontR.FontConsumer; import org.axsl.text.TextServer; -public interface LineArea { +public interface LineArea extends BlockArea { public TextServer getTextServer(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |