[aXSL-commit] SF.net SVN: axsl: [515] 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-06 02:11:29
|
Revision: 515 Author: victormote Date: 2006-05-05 19:11:22 -0700 (Fri, 05 May 2006) ViewCVS: http://svn.sourceforge.net/axsl/?rev=515&view=rev Log Message: ----------- 1. Add new interface for the linkage between FO and Area Trees. 2. Add needed methods to writable AreaNode. Modified Paths: -------------- trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/AreaNode.java Added Paths: ----------- trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/FOLinkage.java Modified: trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/AreaNode.java =================================================================== --- trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/AreaNode.java 2006-05-05 19:10:14 UTC (rev 514) +++ trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/AreaNode.java 2006-05-06 02:11:22 UTC (rev 515) @@ -24,6 +24,14 @@ package org.axsl.areaW; +import org.axsl.foR.FONode; + public interface AreaNode { + public AreaNode getWritableParent() ; + + public Area getWritableParentArea() ; + + public FONode getGeneratedBy() ; + } Added: trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/FOLinkage.java =================================================================== --- trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/FOLinkage.java (rev 0) +++ trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/FOLinkage.java 2006-05-06 02:11:22 UTC (rev 515) @@ -0,0 +1,32 @@ +/* + * 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; + +import org.axsl.areaW.AreaNode; + +/** + * Keeps track of which FONode generated which AreaNode(s). + */ +public interface FOLinkage { + + public void registerGeneratedArea(AreaNode areaNode) ; + +} Property changes on: trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/FOLinkage.java ___________________________________________________________________ Name: svn:keywords + "Author Id Rev Date URL" Name: svn:eol-style + native This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |