New upstream version 1.17

This commit is contained in:
Rewnosor 2024-05-18 17:43:55 +08:00
parent d0fc23aa83
commit 6af8fb3e25
2353 changed files with 2523 additions and 2536 deletions

View File

@ -4,6 +4,13 @@ Change Log
The following log records some of the most important changes. The following log records some of the most important changes.
Bug fixing is an ongoing task, so it is implied in all sub-releases. Bug fixing is an ongoing task, so it is implied in all sub-releases.
1.17
----
BATIK-1346: Allow configuration of rhino whitelist
BATIK-1347: Switch to empty whitelist for rhino
BATIK-1349: Block loading external resource by default
1.16 1.16
---- ----

2
NOTICE
View File

@ -1,5 +1,5 @@
Apache Batik Apache Batik
Copyright 1999-2022 The Apache Software Foundation Copyright 1999-2023 The Apache Software Foundation
This product includes software developed at This product includes software developed at
The Apache Software Foundation (http://www.apache.org/). The Apache Software Foundation (http://www.apache.org/).

View File

@ -32,7 +32,7 @@
<parent> <parent>
<groupId>org.apache.xmlgraphics</groupId> <groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik</artifactId> <artifactId>batik</artifactId>
<version>1.16</version> <version>1.17</version>
</parent> </parent>
<dependencies> <dependencies>

View File

@ -31,7 +31,7 @@
<parent> <parent>
<groupId>org.apache.xmlgraphics</groupId> <groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik</artifactId> <artifactId>batik</artifactId>
<version>1.16</version> <version>1.17</version>
</parent> </parent>
<dependencies> <dependencies>

View File

@ -28,7 +28,7 @@ import org.apache.batik.anim.values.AnimatableValue;
* An abstract base class for the different types of animation. * An abstract base class for the different types of animation.
* *
* @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a> * @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a>
* @version $Id: AbstractAnimation.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public abstract class AbstractAnimation { public abstract class AbstractAnimation {

View File

@ -37,7 +37,7 @@ import org.w3c.dom.Document;
* An abstract base class for managing animation in a document. * An abstract base class for managing animation in a document.
* *
* @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a> * @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a>
* @version $Id: AnimationEngine.java 1804130 2017-08-04 14:41:11Z ssteiner $ * @version $Id$
*/ */
public abstract class AnimationEngine { public abstract class AnimationEngine {

View File

@ -24,7 +24,7 @@ import org.apache.batik.anim.timing.TimedElement;
* An exception class for SMIL animation exceptions. * An exception class for SMIL animation exceptions.
* *
* @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a> * @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a>
* @version $Id: AnimationException.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class AnimationException extends RuntimeException { public class AnimationException extends RuntimeException {

View File

@ -26,7 +26,7 @@ import org.apache.batik.anim.values.AnimatableValue;
* An animation class for 'animateColor' animations. * An animation class for 'animateColor' animations.
* *
* @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a> * @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a>
* @version $Id: ColorAnimation.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class ColorAnimation extends SimpleAnimation { public class ColorAnimation extends SimpleAnimation {

View File

@ -29,7 +29,7 @@ import org.apache.batik.util.SMILConstants;
* 'keyTimes', 'keySplines', 'additive' and 'cumulative' attributes. * 'keyTimes', 'keySplines', 'additive' and 'cumulative' attributes.
* *
* @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a> * @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a>
* @version $Id: InterpolatingAnimation.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public abstract class InterpolatingAnimation extends AbstractAnimation { public abstract class InterpolatingAnimation extends AbstractAnimation {

View File

@ -35,7 +35,7 @@ import org.apache.batik.util.SMILConstants;
* An animation class for 'animateMotion' animations. * An animation class for 'animateMotion' animations.
* *
* @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a> * @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a>
* @version $Id: MotionAnimation.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class MotionAnimation extends InterpolatingAnimation { public class MotionAnimation extends InterpolatingAnimation {

View File

@ -26,7 +26,7 @@ import org.apache.batik.anim.timing.TimedElement;
* An animation class for 'set' animations. * An animation class for 'set' animations.
* *
* @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a> * @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a>
* @version $Id: SetAnimation.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SetAnimation extends AbstractAnimation { public class SetAnimation extends AbstractAnimation {

View File

@ -30,7 +30,7 @@ import org.apache.batik.util.SMILConstants;
* An animation class for 'animate' animations. * An animation class for 'animate' animations.
* *
* @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a> * @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a>
* @version $Id: SimpleAnimation.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SimpleAnimation extends InterpolatingAnimation { public class SimpleAnimation extends InterpolatingAnimation {

View File

@ -29,7 +29,7 @@ import org.w3c.dom.svg.SVGTransform;
* An animation class for 'animateTransform' animations. * An animation class for 'animateTransform' animations.
* *
* @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a> * @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a>
* @version $Id: TransformAnimation.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class TransformAnimation extends SimpleAnimation { public class TransformAnimation extends SimpleAnimation {

View File

@ -37,7 +37,7 @@ import org.w3c.dom.events.MutationEvent;
* an element interoperable with the SVG elements. * an element interoperable with the SVG elements.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: AbstractElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public abstract class AbstractElement public abstract class AbstractElement
extends org.apache.batik.dom.AbstractElement extends org.apache.batik.dom.AbstractElement

View File

@ -34,7 +34,7 @@ import org.w3c.dom.svg.SVGLength;
* SVGAnimatedLength} interface. * SVGAnimatedLength} interface.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: AbstractSVGAnimatedLength.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public abstract class AbstractSVGAnimatedLength public abstract class AbstractSVGAnimatedLength
extends AbstractSVGAnimatedValue extends AbstractSVGAnimatedValue

View File

@ -27,7 +27,7 @@ import org.apache.batik.anim.values.AnimatableValue;
* implements an {@link AnimatedAttributeListener} list. * implements an {@link AnimatedAttributeListener} list.
* *
* @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a> * @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a>
* @version $Id: AbstractSVGAnimatedValue.java 1804130 2017-08-04 14:41:11Z ssteiner $ * @version $Id$
*/ */
public abstract class AbstractSVGAnimatedValue public abstract class AbstractSVGAnimatedValue
implements AnimatedLiveAttributeValue { implements AnimatedLiveAttributeValue {

View File

@ -43,7 +43,7 @@ import org.w3c.dom.svg.SVGLength;
* held by this object. * held by this object.
* *
* @author nicolas.socheleau@bitflash.com * @author nicolas.socheleau@bitflash.com
* @version $Id: AbstractSVGLength.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public abstract class AbstractSVGLength public abstract class AbstractSVGLength
implements SVGLength { implements SVGLength {

View File

@ -35,7 +35,7 @@ import org.w3c.dom.svg.SVGLengthList;
* <code>SVGLengthList</code>. * <code>SVGLengthList</code>.
* *
* @author <a href="mailto:nicolas.socheleau@bitflash.com">Nicolas Socheleau</a> * @author <a href="mailto:nicolas.socheleau@bitflash.com">Nicolas Socheleau</a>
* @version $Id: AbstractSVGLengthList.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public abstract class AbstractSVGLengthList public abstract class AbstractSVGLengthList
extends AbstractSVGList extends AbstractSVGList

View File

@ -26,7 +26,7 @@ import org.apache.batik.anim.values.AnimatableValue;
* {@link org.apache.batik.anim.AbstractAnimation}. * {@link org.apache.batik.anim.AbstractAnimation}.
* *
* @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a> * @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a>
* @version $Id: AnimatableElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public interface AnimatableElement { public interface AnimatableElement {

View File

@ -26,7 +26,7 @@ import org.w3c.dom.Element;
* an {@link SVGOMDocument}. * an {@link SVGOMDocument}.
* *
* @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a> * @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a>
* @version $Id: AnimatedAttributeListener.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public interface AnimatedAttributeListener { public interface AnimatedAttributeListener {

View File

@ -26,7 +26,7 @@ import org.apache.batik.dom.svg.LiveAttributeValue;
* component. * component.
* *
* @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a> * @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a>
* @version $Id: AnimatedLiveAttributeValue.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public interface AnimatedLiveAttributeValue extends LiveAttributeValue { public interface AnimatedLiveAttributeValue extends LiveAttributeValue {

View File

@ -27,7 +27,7 @@ import org.w3c.dom.svg.SVGLength;
* An interface for targets of animation to provide context information. * An interface for targets of animation to provide context information.
* *
* @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a> * @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a>
* @version $Id: AnimationTarget.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public interface AnimationTarget { public interface AnimationTarget {

View File

@ -24,7 +24,7 @@ package org.apache.batik.anim.dom;
* changes and viewport sizes. * changes and viewport sizes.
* *
* @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a> * @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a>
* @version $Id: AnimationTargetListener.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public interface AnimationTargetListener { public interface AnimationTargetListener {

View File

@ -24,7 +24,7 @@ import org.apache.batik.util.DoublyIndexedTable;
* This class is used by elements to initialize and reset their attributes. * This class is used by elements to initialize and reset their attributes.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: AttributeInitializer.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class AttributeInitializer { public class AttributeInitializer {

View File

@ -27,7 +27,7 @@ import org.w3c.dom.Node;
* bound with XBL. * bound with XBL.
* *
* @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a> * @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a>
* @version $Id: BindableElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class BindableElement extends SVGGraphicsElement { public class BindableElement extends SVGGraphicsElement {

View File

@ -44,7 +44,7 @@ import org.w3c.dom.svg.SVGDocument;
* from an URI using SAX2. * from an URI using SAX2.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SAXSVGDocumentFactory.java 1803524 2017-07-31 12:12:37Z ssteiner $ * @version $Id$
*/ */
public class SAXSVGDocumentFactory public class SAXSVGDocumentFactory
extends SAXDocumentFactory extends SAXDocumentFactory

View File

@ -54,7 +54,7 @@ import org.w3c.dom.events.Event;
* It provides support the SVG 1.2 documents. * It provides support the SVG 1.2 documents.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVG12DOMImplementation.java 1831630 2018-05-15 12:56:55Z ssteiner $ * @version $Id$
*/ */
public class SVG12DOMImplementation public class SVG12DOMImplementation
extends SVGDOMImplementation { extends SVGDOMImplementation {

View File

@ -32,7 +32,7 @@ import org.w3c.dom.svg.SVGDocument;
* SVG 1.2 specifics. * SVG 1.2 specifics.
* *
* @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a> * @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a>
* @version $Id: SVG12OMDocument.java 1851346 2019-01-15 13:41:00Z ssteiner $ * @version $Id$
*/ */
public class SVG12OMDocument extends SVGOMDocument { public class SVG12OMDocument extends SVGOMDocument {

View File

@ -26,7 +26,7 @@ import org.apache.batik.dom.svg.SVGContext;
* to the element. * to the element.
* *
* @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a> * @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a>
* @version $Id: SVGAnimationTargetContext.java 1808001 2017-09-11 09:51:29Z ssteiner $ * @version $Id$
*/ */
public interface SVGAnimationTargetContext extends SVGContext { public interface SVGAnimationTargetContext extends SVGContext {

View File

@ -59,7 +59,7 @@ import org.w3c.dom.stylesheets.StyleSheet;
* It provides support the SVG 1.1 documents. * It provides support the SVG 1.1 documents.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGDOMImplementation.java 1831630 2018-05-15 12:56:55Z ssteiner $ * @version $Id$
*/ */
public class SVGDOMImplementation public class SVGDOMImplementation
extends ExtensibleDOMImplementation extends ExtensibleDOMImplementation

View File

@ -26,7 +26,7 @@ import org.apache.batik.dom.util.XMLSupport;
* descriptive text. * descriptive text.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGDescriptiveElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public abstract class SVGDescriptiveElement extends SVGStylableElement { public abstract class SVGDescriptiveElement extends SVGStylableElement {

View File

@ -41,7 +41,7 @@ import org.w3c.dom.svg.SVGStringList;
* This class provides a common superclass for all graphics elements. * This class provides a common superclass for all graphics elements.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGGraphicsElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public abstract class SVGGraphicsElement public abstract class SVGGraphicsElement
extends SVGStylableElement extends SVGStylableElement

View File

@ -37,7 +37,7 @@ import org.w3c.dom.svg.SVGRect;
* This class provides support for the SVGLocatable interface. * This class provides support for the SVGLocatable interface.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGLocatableSupport.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGLocatableSupport { public class SVGLocatableSupport {

View File

@ -32,7 +32,7 @@ import org.w3c.dom.svg.SVGAnimatedString;
* This class implements {@link SVGAElement}. * This class implements {@link SVGAElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMAElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMAElement public class SVGOMAElement
extends SVGURIReferenceGraphicsElement extends SVGURIReferenceGraphicsElement

View File

@ -27,7 +27,7 @@ import org.w3c.dom.svg.SVGAltGlyphDefElement;
* This class implements {@link SVGAltGlyphDefElement}. * This class implements {@link SVGAltGlyphDefElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMAltGlyphDefElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMAltGlyphDefElement public class SVGOMAltGlyphDefElement
extends SVGOMElement extends SVGOMElement

View File

@ -30,7 +30,7 @@ import org.w3c.dom.svg.SVGAltGlyphElement;
* This class implements {@link SVGAltGlyphElement}. * This class implements {@link SVGAltGlyphElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMAltGlyphElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMAltGlyphElement public class SVGOMAltGlyphElement
extends SVGURIReferenceTextPositioningElement extends SVGURIReferenceTextPositioningElement

View File

@ -26,7 +26,7 @@ import org.w3c.dom.svg.SVGAltGlyphItemElement;
* This class implements {@link SVGAltGlyphItemElement}. * This class implements {@link SVGAltGlyphItemElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMAltGlyphItemElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMAltGlyphItemElement public class SVGOMAltGlyphItemElement
extends SVGOMElement extends SVGOMElement

View File

@ -27,7 +27,7 @@ import org.w3c.dom.svg.SVGAnimateColorElement;
* This class implements {@link SVGAnimateColorElement}. * This class implements {@link SVGAnimateColorElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMAnimateColorElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMAnimateColorElement public class SVGOMAnimateColorElement
extends SVGOMAnimationElement extends SVGOMAnimationElement

View File

@ -27,7 +27,7 @@ import org.w3c.dom.svg.SVGAnimateElement;
* This class implements {@link SVGAnimateElement}. * This class implements {@link SVGAnimateElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMAnimateElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMAnimateElement public class SVGOMAnimateElement
extends SVGOMAnimationElement extends SVGOMAnimationElement

View File

@ -27,7 +27,7 @@ import org.w3c.dom.svg.SVGAnimateMotionElement;
* This class implements {@link SVGAnimateMotionElement}. * This class implements {@link SVGAnimateMotionElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMAnimateMotionElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMAnimateMotionElement public class SVGOMAnimateMotionElement
extends SVGOMAnimationElement extends SVGOMAnimationElement

View File

@ -27,7 +27,7 @@ import org.w3c.dom.svg.SVGAnimateTransformElement;
* This class implements {@link SVGAnimateTransformElement}. * This class implements {@link SVGAnimateTransformElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMAnimateTransformElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMAnimateTransformElement public class SVGOMAnimateTransformElement
extends SVGOMAnimationElement extends SVGOMAnimationElement

View File

@ -29,7 +29,7 @@ import org.w3c.dom.svg.SVGAnimatedBoolean;
* This class implements the {@link SVGAnimatedBoolean} interface. * This class implements the {@link SVGAnimatedBoolean} interface.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMAnimatedBoolean.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMAnimatedBoolean public class SVGOMAnimatedBoolean
extends AbstractSVGAnimatedValue extends AbstractSVGAnimatedValue

View File

@ -31,7 +31,7 @@ import org.w3c.dom.svg.SVGAnimatedEnumeration;
* SVGAnimatedEnumeration} interface. * SVGAnimatedEnumeration} interface.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMAnimatedEnumeration.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMAnimatedEnumeration extends AbstractSVGAnimatedValue public class SVGOMAnimatedEnumeration extends AbstractSVGAnimatedValue
implements SVGAnimatedEnumeration { implements SVGAnimatedEnumeration {

View File

@ -29,7 +29,7 @@ import org.w3c.dom.svg.SVGAnimatedInteger;
* This class implements the {@link SVGAnimatedInteger} interface. * This class implements the {@link SVGAnimatedInteger} interface.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMAnimatedInteger.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMAnimatedInteger public class SVGOMAnimatedInteger
extends AbstractSVGAnimatedValue extends AbstractSVGAnimatedValue

View File

@ -24,7 +24,7 @@ package org.apache.batik.anim.dom;
* org.w3c.dom.svg.SVGAnimatedLength} interface. * org.w3c.dom.svg.SVGAnimatedLength} interface.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMAnimatedLength.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMAnimatedLength extends AbstractSVGAnimatedLength { public class SVGOMAnimatedLength extends AbstractSVGAnimatedLength {

View File

@ -41,7 +41,7 @@ import org.apache.batik.parser.ParseException;
* interface. * interface.
* *
* @author <a href="mailto:nicolas.socheleau@bitflash.com">Nicolas Socheleau</a> * @author <a href="mailto:nicolas.socheleau@bitflash.com">Nicolas Socheleau</a>
* @version $Id: SVGOMAnimatedLengthList.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMAnimatedLengthList public class SVGOMAnimatedLengthList
extends AbstractSVGAnimatedValue extends AbstractSVGAnimatedValue

View File

@ -35,7 +35,7 @@ import org.w3c.dom.svg.SVGMarkerElement;
* 'orient' attribute. * 'orient' attribute.
* *
* @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a> * @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a>
* @version $Id: SVGOMAnimatedMarkerOrientValue.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMAnimatedMarkerOrientValue extends AbstractSVGAnimatedValue { public class SVGOMAnimatedMarkerOrientValue extends AbstractSVGAnimatedValue {

View File

@ -29,7 +29,7 @@ import org.w3c.dom.svg.SVGAnimatedNumber;
* This class implements the {@link SVGAnimatedNumber} interface. * This class implements the {@link SVGAnimatedNumber} interface.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMAnimatedNumber.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMAnimatedNumber public class SVGOMAnimatedNumber
extends AbstractSVGAnimatedValue extends AbstractSVGAnimatedValue

View File

@ -44,7 +44,7 @@ import org.w3c.dom.svg.SVGNumberList;
* interface. * interface.
* *
* @author <a href="mailto:tonny@kiyut.com">Tonny Kohar</a> * @author <a href="mailto:tonny@kiyut.com">Tonny Kohar</a>
* @version $Id: SVGOMAnimatedNumberList.java 1804130 2017-08-04 14:41:11Z ssteiner $ * @version $Id$
*/ */
public class SVGOMAnimatedNumberList public class SVGOMAnimatedNumberList
extends AbstractSVGAnimatedValue extends AbstractSVGAnimatedValue

View File

@ -55,7 +55,7 @@ import org.w3c.dom.svg.SVGPathSegList;
* *
* @author <a href="mailto:nicolas.socheleau@bitflash.com">Nicolas Socheleau</a> * @author <a href="mailto:nicolas.socheleau@bitflash.com">Nicolas Socheleau</a>
* @author <a href="mailto:andrest@world-affair.com">Andres Toussaint</a> * @author <a href="mailto:andrest@world-affair.com">Andres Toussaint</a>
* @version $Id: SVGOMAnimatedPathData.java 1831635 2018-05-15 13:33:47Z ssteiner $ * @version $Id$
*/ */
public class SVGOMAnimatedPathData public class SVGOMAnimatedPathData
extends AbstractSVGAnimatedValue extends AbstractSVGAnimatedValue

View File

@ -42,7 +42,7 @@ import org.w3c.dom.svg.SVGPointList;
* This class is the implementation of the SVGAnimatedPoints interface. * This class is the implementation of the SVGAnimatedPoints interface.
* *
* @author <a href="mailto:nicolas.socheleau@bitflash.com">Nicolas Socheleau</a> * @author <a href="mailto:nicolas.socheleau@bitflash.com">Nicolas Socheleau</a>
* @version $Id: SVGOMAnimatedPoints.java 1804130 2017-08-04 14:41:11Z ssteiner $ * @version $Id$
*/ */
public class SVGOMAnimatedPoints public class SVGOMAnimatedPoints
extends AbstractSVGAnimatedValue extends AbstractSVGAnimatedValue

View File

@ -34,7 +34,7 @@ import org.w3c.dom.svg.SVGPreserveAspectRatio;
* This class implements the {@link SVGAnimatedPreserveAspectRatio} interface. * This class implements the {@link SVGAnimatedPreserveAspectRatio} interface.
* *
* @author <a href="mailto:tonny@kiyut.com">Tonny Kohar</a> * @author <a href="mailto:tonny@kiyut.com">Tonny Kohar</a>
* @version $Id: SVGOMAnimatedPreserveAspectRatio.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMAnimatedPreserveAspectRatio public class SVGOMAnimatedPreserveAspectRatio
extends AbstractSVGAnimatedValue extends AbstractSVGAnimatedValue

View File

@ -35,7 +35,7 @@ import org.w3c.dom.svg.SVGRect;
* Implementation of {@link SVGAnimatedRect}. * Implementation of {@link SVGAnimatedRect}.
* *
* @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a> * @author <a href="mailto:cam%40mcc%2eid%2eau">Cameron McCormack</a>
* @version $Id: SVGOMAnimatedRect.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMAnimatedRect public class SVGOMAnimatedRect
extends AbstractSVGAnimatedValue extends AbstractSVGAnimatedValue

View File

@ -29,7 +29,7 @@ import org.w3c.dom.svg.SVGAnimatedString;
* This class implements the {@link SVGAnimatedString} interface. * This class implements the {@link SVGAnimatedString} interface.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMAnimatedString.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMAnimatedString extends AbstractSVGAnimatedValue public class SVGOMAnimatedString extends AbstractSVGAnimatedValue
implements SVGAnimatedString { implements SVGAnimatedString {

View File

@ -41,7 +41,7 @@ import org.apache.batik.parser.ParseException;
* This class is the implementation of the SVGAnimatedTransformList interface. * This class is the implementation of the SVGAnimatedTransformList interface.
* *
* @author <a href="mailto:nicolas.socheleau@bitflash.com">Nicolas Socheleau</a> * @author <a href="mailto:nicolas.socheleau@bitflash.com">Nicolas Socheleau</a>
* @version $Id: SVGOMAnimatedTransformList.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMAnimatedTransformList public class SVGOMAnimatedTransformList
extends AbstractSVGAnimatedValue extends AbstractSVGAnimatedValue

View File

@ -35,7 +35,7 @@ import org.w3c.dom.svg.SVGStringList;
* This class provides an implementation of the {@link SVGAnimationElement} interface. * This class provides an implementation of the {@link SVGAnimationElement} interface.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMAnimationElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public abstract class SVGOMAnimationElement public abstract class SVGOMAnimationElement
extends SVGOMElement extends SVGOMElement

View File

@ -30,7 +30,7 @@ import org.w3c.dom.svg.SVGCircleElement;
* This class implements {@link SVGCircleElement}. * This class implements {@link SVGCircleElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMCircleElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMCircleElement public class SVGOMCircleElement
extends SVGGraphicsElement extends SVGGraphicsElement

View File

@ -30,7 +30,7 @@ import org.w3c.dom.svg.SVGClipPathElement;
* This class implements {@link SVGClipPathElement}. * This class implements {@link SVGClipPathElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMClipPathElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMClipPathElement public class SVGOMClipPathElement
extends SVGGraphicsElement extends SVGGraphicsElement

View File

@ -31,7 +31,7 @@ import org.w3c.dom.svg.SVGColorProfileElement;
* This class implements {@link org.w3c.dom.svg.SVGColorProfileElement}. * This class implements {@link org.w3c.dom.svg.SVGColorProfileElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMColorProfileElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMColorProfileElement public class SVGOMColorProfileElement
extends SVGOMURIReferenceElement extends SVGOMURIReferenceElement

View File

@ -31,7 +31,7 @@ import org.w3c.dom.svg.SVGComponentTransferFunctionElement;
* This class represents the component transfer function elements. * This class represents the component transfer function elements.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMComponentTransferFunctionElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public abstract class SVGOMComponentTransferFunctionElement public abstract class SVGOMComponentTransferFunctionElement
extends SVGOMElement extends SVGOMElement

View File

@ -35,7 +35,7 @@ import org.w3c.dom.svg.SVGStringList;
* This class implements {@link org.w3c.dom.svg.SVGCursorElement}. * This class implements {@link org.w3c.dom.svg.SVGCursorElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMCursorElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMCursorElement public class SVGOMCursorElement
extends SVGOMURIReferenceElement extends SVGOMURIReferenceElement

View File

@ -26,7 +26,7 @@ import org.w3c.dom.svg.SVGDefinitionSrcElement;
* This class implements {@link SVGDefinitionSrcElement}. * This class implements {@link SVGDefinitionSrcElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMDefinitionSrcElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMDefinitionSrcElement public class SVGOMDefinitionSrcElement
extends SVGOMElement extends SVGOMElement

View File

@ -26,7 +26,7 @@ import org.w3c.dom.svg.SVGDefsElement;
* This class implements {@link SVGDefsElement}. * This class implements {@link SVGDefsElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMDefsElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMDefsElement public class SVGOMDefsElement
extends SVGGraphicsElement extends SVGGraphicsElement

View File

@ -26,7 +26,7 @@ import org.w3c.dom.svg.SVGDescElement;
* This class implements {@link SVGDescElement}. * This class implements {@link SVGDescElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMDescElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMDescElement public class SVGOMDescElement
extends SVGDescriptiveElement extends SVGDescriptiveElement

View File

@ -77,7 +77,7 @@ import org.w3c.dom.svg.SVGSVGElement;
* This class implements {@link SVGDocument}. * This class implements {@link SVGDocument}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMDocument.java 1851346 2019-01-15 13:41:00Z ssteiner $ * @version $Id$
*/ */
public class SVGOMDocument public class SVGOMDocument
extends AbstractStylableDocument extends AbstractStylableDocument

View File

@ -55,7 +55,7 @@ import org.w3c.dom.svg.SVGSVGElement;
* This class implements the {@link SVGElement} interface. * This class implements the {@link SVGElement} interface.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMElement.java 1804130 2017-08-04 14:41:11Z ssteiner $ * @version $Id$
*/ */
public abstract class SVGOMElement public abstract class SVGOMElement
extends AbstractElement extends AbstractElement

View File

@ -30,7 +30,7 @@ import org.w3c.dom.svg.SVGEllipseElement;
* This class implements {@link SVGEllipseElement}. * This class implements {@link SVGEllipseElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMEllipseElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMEllipseElement public class SVGOMEllipseElement
extends SVGGraphicsElement extends SVGGraphicsElement

View File

@ -31,7 +31,7 @@ import org.w3c.dom.svg.SVGFEBlendElement;
* This class implements {@link SVGFEBlendElement}. * This class implements {@link SVGFEBlendElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFEBlendElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFEBlendElement public class SVGOMFEBlendElement
extends SVGOMFilterPrimitiveStandardAttributes extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -32,7 +32,7 @@ import org.w3c.dom.svg.SVGFEColorMatrixElement;
* This class implements {@link SVGFEColorMatrixElement}. * This class implements {@link SVGFEColorMatrixElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFEColorMatrixElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFEColorMatrixElement public class SVGOMFEColorMatrixElement
extends SVGOMFilterPrimitiveStandardAttributes extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -30,7 +30,7 @@ import org.w3c.dom.svg.SVGFEComponentTransferElement;
* This class implements {@link SVGFEComponentTransferElement}. * This class implements {@link SVGFEComponentTransferElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFEComponentTransferElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFEComponentTransferElement public class SVGOMFEComponentTransferElement
extends SVGOMFilterPrimitiveStandardAttributes extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -32,7 +32,7 @@ import org.w3c.dom.svg.SVGFECompositeElement;
* This class implements {@link SVGFECompositeElement}. * This class implements {@link SVGFECompositeElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFECompositeElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFECompositeElement public class SVGOMFECompositeElement
extends SVGOMFilterPrimitiveStandardAttributes extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -35,7 +35,7 @@ import org.w3c.dom.svg.SVGFEConvolveMatrixElement;
* This class implements {@link SVGFEConvolveMatrixElement}. * This class implements {@link SVGFEConvolveMatrixElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFEConvolveMatrixElement.java 1805420 2017-08-18 13:04:41Z ssteiner $ * @version $Id$
*/ */
public class SVGOMFEConvolveMatrixElement public class SVGOMFEConvolveMatrixElement
extends SVGOMFilterPrimitiveStandardAttributes extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -31,7 +31,7 @@ import org.w3c.dom.svg.SVGFEDiffuseLightingElement;
* This class implements {@link SVGFEDiffuseLightingElement}. * This class implements {@link SVGFEDiffuseLightingElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFEDiffuseLightingElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFEDiffuseLightingElement public class SVGOMFEDiffuseLightingElement
extends SVGOMFilterPrimitiveStandardAttributes extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -32,7 +32,7 @@ import org.w3c.dom.svg.SVGFEDisplacementMapElement;
* This class implements {@link org.w3c.dom.svg.SVGFEDisplacementMapElement}. * This class implements {@link org.w3c.dom.svg.SVGFEDisplacementMapElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFEDisplacementMapElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFEDisplacementMapElement public class SVGOMFEDisplacementMapElement
extends SVGOMFilterPrimitiveStandardAttributes extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -30,7 +30,7 @@ import org.w3c.dom.svg.SVGFEDistantLightElement;
* This class implements {@link SVGFEDistantLightElement}. * This class implements {@link SVGFEDistantLightElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFEDistantLightElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFEDistantLightElement public class SVGOMFEDistantLightElement
extends SVGOMElement extends SVGOMElement

View File

@ -30,7 +30,7 @@ import org.w3c.dom.svg.SVGFEFloodElement;
* This class implements {@link SVGFEFloodElement}. * This class implements {@link SVGFEFloodElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFEFloodElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFEFloodElement public class SVGOMFEFloodElement
extends SVGOMFilterPrimitiveStandardAttributes extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -26,7 +26,7 @@ import org.w3c.dom.svg.SVGFEFuncAElement;
* This class implements {@link SVGFEFuncAElement}. * This class implements {@link SVGFEFuncAElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFEFuncAElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFEFuncAElement public class SVGOMFEFuncAElement
extends SVGOMComponentTransferFunctionElement extends SVGOMComponentTransferFunctionElement

View File

@ -26,7 +26,7 @@ import org.w3c.dom.svg.SVGFEFuncBElement;
* This class implements {@link SVGFEFuncBElement}. * This class implements {@link SVGFEFuncBElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFEFuncBElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFEFuncBElement public class SVGOMFEFuncBElement
extends SVGOMComponentTransferFunctionElement extends SVGOMComponentTransferFunctionElement

View File

@ -26,7 +26,7 @@ import org.w3c.dom.svg.SVGFEFuncGElement;
* This class implements {@link SVGFEFuncGElement}. * This class implements {@link SVGFEFuncGElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFEFuncGElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFEFuncGElement public class SVGOMFEFuncGElement
extends SVGOMComponentTransferFunctionElement extends SVGOMComponentTransferFunctionElement

View File

@ -26,7 +26,7 @@ import org.w3c.dom.svg.SVGFEFuncRElement;
* This class implements {@link SVGFEFuncRElement}. * This class implements {@link SVGFEFuncRElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFEFuncRElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFEFuncRElement public class SVGOMFEFuncRElement
extends SVGOMComponentTransferFunctionElement extends SVGOMComponentTransferFunctionElement

View File

@ -31,7 +31,7 @@ import org.w3c.dom.svg.SVGFEGaussianBlurElement;
* This class implements {@link SVGFEGaussianBlurElement}. * This class implements {@link SVGFEGaussianBlurElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFEGaussianBlurElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFEGaussianBlurElement public class SVGOMFEGaussianBlurElement
extends SVGOMFilterPrimitiveStandardAttributes extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -34,7 +34,7 @@ import org.w3c.dom.svg.SVGFEImageElement;
* This class implements {@link SVGFEImageElement}. * This class implements {@link SVGFEImageElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFEImageElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFEImageElement public class SVGOMFEImageElement
extends SVGOMFilterPrimitiveStandardAttributes extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -26,7 +26,7 @@ import org.w3c.dom.svg.SVGFEMergeElement;
* This class implements {@link SVGFEMergeElement}. * This class implements {@link SVGFEMergeElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFEMergeElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFEMergeElement public class SVGOMFEMergeElement
extends SVGOMFilterPrimitiveStandardAttributes extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -30,7 +30,7 @@ import org.w3c.dom.svg.SVGFEMergeNodeElement;
* This class implements {@link SVGFEMergeNodeElement}. * This class implements {@link SVGFEMergeNodeElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFEMergeNodeElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFEMergeNodeElement public class SVGOMFEMergeNodeElement
extends SVGOMElement extends SVGOMElement

View File

@ -32,7 +32,7 @@ import org.w3c.dom.svg.SVGFEMorphologyElement;
* This class implements {@link SVGFEMorphologyElement}. * This class implements {@link SVGFEMorphologyElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFEMorphologyElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFEMorphologyElement public class SVGOMFEMorphologyElement
extends SVGOMFilterPrimitiveStandardAttributes extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -31,7 +31,7 @@ import org.w3c.dom.svg.SVGFEOffsetElement;
* This class implements {@link SVGFEOffsetElement}. * This class implements {@link SVGFEOffsetElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFEOffsetElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFEOffsetElement public class SVGOMFEOffsetElement
extends SVGOMFilterPrimitiveStandardAttributes extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -30,7 +30,7 @@ import org.w3c.dom.svg.SVGFEPointLightElement;
* This class implements {@link SVGFEPointLightElement}. * This class implements {@link SVGFEPointLightElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFEPointLightElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFEPointLightElement public class SVGOMFEPointLightElement
extends SVGOMElement extends SVGOMElement

View File

@ -31,7 +31,7 @@ import org.w3c.dom.svg.SVGFESpecularLightingElement;
* This class implements {@link SVGFESpecularLightingElement}. * This class implements {@link SVGFESpecularLightingElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFESpecularLightingElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFESpecularLightingElement public class SVGOMFESpecularLightingElement
extends SVGOMFilterPrimitiveStandardAttributes extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -30,7 +30,7 @@ import org.w3c.dom.svg.SVGFESpotLightElement;
* This class implements {@link SVGFESpotLightElement}. * This class implements {@link SVGFESpotLightElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFESpotLightElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFESpotLightElement public class SVGOMFESpotLightElement
extends SVGOMElement extends SVGOMElement

View File

@ -30,7 +30,7 @@ import org.w3c.dom.svg.SVGFETileElement;
* This class implements {@link SVGFETileElement}. * This class implements {@link SVGFETileElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFETileElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFETileElement public class SVGOMFETileElement
extends SVGOMFilterPrimitiveStandardAttributes extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -32,7 +32,7 @@ import org.w3c.dom.svg.SVGFETurbulenceElement;
* This class implements {@link SVGFETurbulenceElement}. * This class implements {@link SVGFETurbulenceElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFETurbulenceElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFETurbulenceElement public class SVGOMFETurbulenceElement
extends SVGOMFilterPrimitiveStandardAttributes extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -36,7 +36,7 @@ import org.w3c.dom.svg.SVGFilterElement;
* This class implements {@link SVGFilterElement}. * This class implements {@link SVGFilterElement}.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFilterElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFilterElement public class SVGOMFilterElement
extends SVGStylableElement extends SVGStylableElement

View File

@ -31,7 +31,7 @@ import org.w3c.dom.svg.SVGFilterPrimitiveStandardAttributes;
* attributes. * attributes.
* *
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a> * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id: SVGOMFilterPrimitiveStandardAttributes.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public abstract class SVGOMFilterPrimitiveStandardAttributes public abstract class SVGOMFilterPrimitiveStandardAttributes
extends SVGStylableElement extends SVGStylableElement

View File

@ -27,7 +27,7 @@ import org.w3c.dom.svg.SVGTextContentElement;
* This class implements the flowDiv element from SVG 1.2 * This class implements the flowDiv element from SVG 1.2
* *
* @author <a href="mailto:thomas.deweese@kodak.com">Thomas DeWeese</a> * @author <a href="mailto:thomas.deweese@kodak.com">Thomas DeWeese</a>
* @version $Id: SVGOMFlowDivElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFlowDivElement public class SVGOMFlowDivElement
extends SVGOMTextContentElement extends SVGOMTextContentElement

View File

@ -26,7 +26,7 @@ import org.w3c.dom.Node;
* This class implements a regular polygon extension to SVG * This class implements a regular polygon extension to SVG
* *
* @author <a href="mailto:thomas.deweese@kodak.com">Thomas DeWeese</a> * @author <a href="mailto:thomas.deweese@kodak.com">Thomas DeWeese</a>
* @version $Id: SVGOMFlowLineElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFlowLineElement public class SVGOMFlowLineElement
extends SVGOMTextPositioningElement { extends SVGOMTextPositioningElement {

View File

@ -27,7 +27,7 @@ import org.w3c.dom.Node;
* This class implements a regular polygon extension to SVG * This class implements a regular polygon extension to SVG
* *
* @author <a href="mailto:thomas.deweese@kodak.com">Thomas DeWeese</a> * @author <a href="mailto:thomas.deweese@kodak.com">Thomas DeWeese</a>
* @version $Id: SVGOMFlowParaElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFlowParaElement public class SVGOMFlowParaElement
extends SVGOMTextPositioningElement { extends SVGOMTextPositioningElement {

View File

@ -26,7 +26,7 @@ import org.w3c.dom.Node;
* This class implements a regular polygon extension to SVG * This class implements a regular polygon extension to SVG
* *
* @author <a href="mailto:thomas.deweese@kodak.com">Thomas DeWeese</a> * @author <a href="mailto:thomas.deweese@kodak.com">Thomas DeWeese</a>
* @version $Id: SVGOMFlowRegionBreakElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFlowRegionBreakElement public class SVGOMFlowRegionBreakElement
extends SVGOMTextPositioningElement { extends SVGOMTextPositioningElement {

View File

@ -26,7 +26,7 @@ import org.w3c.dom.Node;
* This class implements a regular polygon extension to SVG * This class implements a regular polygon extension to SVG
* *
* @author <a href="mailto:thomas.deweese@kodak.com">Thomas DeWeese</a> * @author <a href="mailto:thomas.deweese@kodak.com">Thomas DeWeese</a>
* @version $Id: SVGOMFlowRegionElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFlowRegionElement extends SVGStylableElement { public class SVGOMFlowRegionElement extends SVGStylableElement {

View File

@ -26,7 +26,7 @@ import org.w3c.dom.Node;
* This class implements a regular polygon extension to SVG * This class implements a regular polygon extension to SVG
* *
* @author <a href="mailto:thomas.deweese@kodak.com">Thomas DeWeese</a> * @author <a href="mailto:thomas.deweese@kodak.com">Thomas DeWeese</a>
* @version $Id: SVGOMFlowRegionExcludeElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFlowRegionExcludeElement extends SVGStylableElement { public class SVGOMFlowRegionExcludeElement extends SVGStylableElement {

View File

@ -26,7 +26,7 @@ import org.w3c.dom.Node;
* This class implements a regular polygon extension to SVG * This class implements a regular polygon extension to SVG
* *
* @author <a href="mailto:thomas.deweese@kodak.com">Thomas DeWeese</a> * @author <a href="mailto:thomas.deweese@kodak.com">Thomas DeWeese</a>
* @version $Id: SVGOMFlowRootElement.java 1733416 2016-03-03 07:07:13Z gadams $ * @version $Id$
*/ */
public class SVGOMFlowRootElement extends SVGGraphicsElement { public class SVGOMFlowRootElement extends SVGGraphicsElement {

Some files were not shown because too many files have changed in this diff Show More