[aXSL-commit] SF.net SVN: axsl: [580] trunk/axsl
An API for XSL-FO.
Status: Alpha
Brought to you by:
victormote
|
From: <vic...@us...> - 2006-05-24 18:26:49
|
Revision: 580 Author: victormote Date: 2006-05-24 11:26:33 -0700 (Wed, 24 May 2006) ViewCVS: http://svn.sourceforge.net/axsl/?rev=580&view=rev Log Message: ----------- Add new package for layout systems. Added Paths: ----------- trunk/axsl/axsl-layout/ trunk/axsl/axsl-layout/.checkstyle trunk/axsl/axsl-layout/.classpath trunk/axsl/axsl-layout/.project trunk/axsl/axsl-layout/src/ trunk/axsl/axsl-layout/src/java/ trunk/axsl/axsl-layout/src/java/org/ trunk/axsl/axsl-layout/src/java/org/axsl/ trunk/axsl/axsl-layout/src/java/org/axsl/layout/ trunk/axsl/axsl-layout/src/java/org/axsl/layout/Layout.java Property changes on: trunk/axsl/axsl-layout ___________________________________________________________________ Name: svn:ignore + build zzlocal Added: trunk/axsl/axsl-layout/.checkstyle =================================================================== --- trunk/axsl/axsl-layout/.checkstyle (rev 0) +++ trunk/axsl/axsl-layout/.checkstyle 2006-05-24 18:26:33 UTC (rev 580) @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<fileset-config file-format-version="1.2.0" simple-config="true"> + <fileset name="all" enabled="true" check-config-name="aXSL Checkstyle" local="false"> + <file-match-pattern match-pattern="." include-pattern="true"/> + </fileset> +</fileset-config> Added: trunk/axsl/axsl-layout/.classpath =================================================================== --- trunk/axsl/axsl-layout/.classpath (rev 0) +++ trunk/axsl/axsl-layout/.classpath 2006-05-24 18:26:33 UTC (rev 580) @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<classpath> + <classpathentry kind="src" path="src/java"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> + <classpathentry kind="output" path="build/eclipse"/> +</classpath> Added: trunk/axsl/axsl-layout/.project =================================================================== --- trunk/axsl/axsl-layout/.project (rev 0) +++ trunk/axsl/axsl-layout/.project 2006-05-24 18:26:33 UTC (rev 580) @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>axslLayout</name> + <comment></comment> + <projects> + </projects> + <buildSpec> + <buildCommand> + <name>org.eclipse.jdt.core.javabuilder</name> + <arguments> + </arguments> + </buildCommand> + <buildCommand> + <name>com.atlassw.tools.eclipse.checkstyle.CheckstyleBuilder</name> + <arguments> + </arguments> + </buildCommand> + </buildSpec> + <natures> + <nature>org.eclipse.jdt.core.javanature</nature> + <nature>com.atlassw.tools.eclipse.checkstyle.CheckstyleNature</nature> + </natures> +</projectDescription> Added: trunk/axsl/axsl-layout/src/java/org/axsl/layout/Layout.java =================================================================== --- trunk/axsl/axsl-layout/src/java/org/axsl/layout/Layout.java (rev 0) +++ trunk/axsl/axsl-layout/src/java/org/axsl/layout/Layout.java 2006-05-24 18:26:33 UTC (rev 580) @@ -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.layout; + +public interface Layout { + +} Property changes on: trunk/axsl/axsl-layout/src/java/org/axsl/layout/Layout.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. |