You are viewing a plain text version of this content. The canonical link for it is here.
Posted to batik-commits@xmlgraphics.apache.org by ca...@apache.org on 2007/12/07 02:04:20 UTC

svn commit: r601947 - in /xmlgraphics/batik/trunk: build.xml sources/org/w3c/dom/ElementTraversal.java

Author: cam
Date: Thu Dec  6 17:04:17 2007
New Revision: 601947

URL: http://svn.apache.org/viewvc?rev=601947&view=rev
Log:
ElementTraversal interface.

Added:
    xmlgraphics/batik/trunk/sources/org/w3c/dom/ElementTraversal.java
Modified:
    xmlgraphics/batik/trunk/build.xml

Modified: xmlgraphics/batik/trunk/build.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/batik/trunk/build.xml?rev=601947&r1=601946&r2=601947&view=diff
==============================================================================
--- xmlgraphics/batik/trunk/build.xml (original)
+++ xmlgraphics/batik/trunk/build.xml Thu Dec  6 17:04:17 2007
@@ -552,7 +552,8 @@
 
   <!-- Generates maven artifacts to be copied to
        http://people.apache.org/repo/m2-ibiblio-rsync-repository/org/apache/xmlgraphics/.
-       PGP signing of artifacts and POMs must be done manually.
+       Updating maven-metadata.xml files, and PGP signing of artifacts and POMs
+       must be done manually.
 
        Note that the rules to build the artifact jars here are mostly redundant
        with the relevant jar target (e.g. rasterizer-jar, squiggle-jar).  The
@@ -1099,7 +1100,7 @@
       </manifest>
       <fileset dir="${dest}" excludes="**/.svn/">
         <include name="org/apache/batik/**"/>
-        <include name="org/w3c/dom/events/**"/>
+        <include name="org/w3c/**"/>
       </fileset>
       <fileset dir="${resources}" excludes="**/.svn/">
         <include name="**"/>

Added: xmlgraphics/batik/trunk/sources/org/w3c/dom/ElementTraversal.java
URL: http://svn.apache.org/viewvc/xmlgraphics/batik/trunk/sources/org/w3c/dom/ElementTraversal.java?rev=601947&view=auto
==============================================================================
--- xmlgraphics/batik/trunk/sources/org/w3c/dom/ElementTraversal.java (added)
+++ xmlgraphics/batik/trunk/sources/org/w3c/dom/ElementTraversal.java Thu Dec  6 17:04:17 2007
@@ -0,0 +1,28 @@
+/*
+
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You 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.
+
+ */
+package org.w3c.dom;
+
+public interface ElementTraversal {
+
+    Element getFirstElementChild();
+    Element getLastElementChild();
+    Element getNextElementSibling();
+    Element getPreviousElementSibling();
+    int getChildElementCount();
+}