[aXSL-commit] SF.net SVN: axsl: [552] 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-09 01:05:26
|
Revision: 552 Author: victormote Date: 2006-05-08 08:45:04 -0700 (Mon, 08 May 2006) ViewCVS: http://svn.sourceforge.net/axsl/?rev=552&view=rev Log Message: ----------- Add new interfaces. Added Paths: ----------- trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/BlockContainerRA.java trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/ContainerRA.java trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/GenericContainer.java trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/TableBodyContainer.java trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/TableFooterContainer.java trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/TableHeaderContainer.java Added: trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/BlockContainerRA.java =================================================================== --- trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/BlockContainerRA.java (rev 0) +++ trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/BlockContainerRA.java 2006-05-08 15:45:04 UTC (rev 552) @@ -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 BlockContainerRA extends ContainerRA { + +} Property changes on: trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/BlockContainerRA.java ___________________________________________________________________ Name: svn:keywords + "Author Id Rev Date URL" Name: svn:eol-style + native Added: trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/ContainerRA.java =================================================================== --- trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/ContainerRA.java (rev 0) +++ trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/ContainerRA.java 2006-05-08 15:45:04 UTC (rev 552) @@ -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 ContainerRA extends AreaFlexible { + +} Property changes on: trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/ContainerRA.java ___________________________________________________________________ Name: svn:keywords + "Author Id Rev Date URL" Name: svn:eol-style + native Added: trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/GenericContainer.java =================================================================== --- trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/GenericContainer.java (rev 0) +++ trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/GenericContainer.java 2006-05-08 15:45:04 UTC (rev 552) @@ -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 GenericContainer extends ContainerRA { + +} Property changes on: trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/GenericContainer.java ___________________________________________________________________ Name: svn:keywords + "Author Id Rev Date URL" Name: svn:eol-style + native Added: trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/TableBodyContainer.java =================================================================== --- trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/TableBodyContainer.java (rev 0) +++ trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/TableBodyContainer.java 2006-05-08 15:45:04 UTC (rev 552) @@ -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 TableBodyContainer extends GenericContainer { + +} Property changes on: trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/TableBodyContainer.java ___________________________________________________________________ Name: svn:keywords + "Author Id Rev Date URL" Name: svn:eol-style + native Added: trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/TableFooterContainer.java =================================================================== --- trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/TableFooterContainer.java (rev 0) +++ trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/TableFooterContainer.java 2006-05-08 15:45:04 UTC (rev 552) @@ -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 TableFooterContainer extends GenericContainer { + +} Property changes on: trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/TableFooterContainer.java ___________________________________________________________________ Name: svn:keywords + "Author Id Rev Date URL" Name: svn:eol-style + native Added: trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/TableHeaderContainer.java =================================================================== --- trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/TableHeaderContainer.java (rev 0) +++ trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/TableHeaderContainer.java 2006-05-08 15:45:04 UTC (rev 552) @@ -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 TableHeaderContainer extends GenericContainer { + +} Property changes on: trunk/axsl/axsl-area-w/src/java/org/axsl/areaW/TableHeaderContainer.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. |