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.
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
----

2
NOTICE
View File

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

View File

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

View File

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

View File

@ -28,7 +28,7 @@ import org.apache.batik.anim.values.AnimatableValue;
* An abstract base class for the different types of animation.
*
* @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 {

View File

@ -37,7 +37,7 @@ import org.w3c.dom.Document;
* An abstract base class for managing animation in a document.
*
* @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 {

View File

@ -24,7 +24,7 @@ import org.apache.batik.anim.timing.TimedElement;
* An exception class for SMIL animation exceptions.
*
* @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 {

View File

@ -26,7 +26,7 @@ import org.apache.batik.anim.values.AnimatableValue;
* An animation class for 'animateColor' animations.
*
* @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 {

View File

@ -29,7 +29,7 @@ import org.apache.batik.util.SMILConstants;
* 'keyTimes', 'keySplines', 'additive' and 'cumulative' attributes.
*
* @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 {

View File

@ -35,7 +35,7 @@ import org.apache.batik.util.SMILConstants;
* An animation class for 'animateMotion' animations.
*
* @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 {

View File

@ -26,7 +26,7 @@ import org.apache.batik.anim.timing.TimedElement;
* An animation class for 'set' animations.
*
* @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 {

View File

@ -30,7 +30,7 @@ import org.apache.batik.util.SMILConstants;
* An animation class for 'animate' animations.
*
* @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 {

View File

@ -29,7 +29,7 @@ import org.w3c.dom.svg.SVGTransform;
* An animation class for 'animateTransform' animations.
*
* @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 {

View File

@ -37,7 +37,7 @@ import org.w3c.dom.events.MutationEvent;
* an element interoperable with the SVG elements.
*
* @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
extends org.apache.batik.dom.AbstractElement

View File

@ -34,7 +34,7 @@ import org.w3c.dom.svg.SVGLength;
* SVGAnimatedLength} interface.
*
* @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
extends AbstractSVGAnimatedValue

View File

@ -27,7 +27,7 @@ import org.apache.batik.anim.values.AnimatableValue;
* implements an {@link AnimatedAttributeListener} list.
*
* @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
implements AnimatedLiveAttributeValue {

View File

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

View File

@ -35,7 +35,7 @@ import org.w3c.dom.svg.SVGLengthList;
* <code>SVGLengthList</code>.
*
* @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
extends AbstractSVGList

View File

@ -26,7 +26,7 @@ import org.apache.batik.anim.values.AnimatableValue;
* {@link org.apache.batik.anim.AbstractAnimation}.
*
* @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 {

View File

@ -26,7 +26,7 @@ import org.w3c.dom.Element;
* an {@link SVGOMDocument}.
*
* @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 {

View File

@ -26,7 +26,7 @@ import org.apache.batik.dom.svg.LiveAttributeValue;
* component.
*
* @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 {

View File

@ -27,7 +27,7 @@ import org.w3c.dom.svg.SVGLength;
* An interface for targets of animation to provide context information.
*
* @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 {

View File

@ -24,7 +24,7 @@ package org.apache.batik.anim.dom;
* changes and viewport sizes.
*
* @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 {

View File

@ -24,7 +24,7 @@ import org.apache.batik.util.DoublyIndexedTable;
* This class is used by elements to initialize and reset their attributes.
*
* @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 {

View File

@ -27,7 +27,7 @@ import org.w3c.dom.Node;
* bound with XBL.
*
* @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 {

View File

@ -44,7 +44,7 @@ import org.w3c.dom.svg.SVGDocument;
* from an URI using SAX2.
*
* @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
extends SAXDocumentFactory

View File

@ -54,7 +54,7 @@ import org.w3c.dom.events.Event;
* It provides support the SVG 1.2 documents.
*
* @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
extends SVGDOMImplementation {

View File

@ -32,7 +32,7 @@ import org.w3c.dom.svg.SVGDocument;
* SVG 1.2 specifics.
*
* @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 {

View File

@ -26,7 +26,7 @@ import org.apache.batik.dom.svg.SVGContext;
* to the element.
*
* @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 {

View File

@ -59,7 +59,7 @@ import org.w3c.dom.stylesheets.StyleSheet;
* It provides support the SVG 1.1 documents.
*
* @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
extends ExtensibleDOMImplementation

View File

@ -26,7 +26,7 @@ import org.apache.batik.dom.util.XMLSupport;
* descriptive text.
*
* @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 {

View File

@ -41,7 +41,7 @@ import org.w3c.dom.svg.SVGStringList;
* This class provides a common superclass for all graphics elements.
*
* @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
extends SVGStylableElement

View File

@ -37,7 +37,7 @@ import org.w3c.dom.svg.SVGRect;
* This class provides support for the SVGLocatable interface.
*
* @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 {

View File

@ -32,7 +32,7 @@ import org.w3c.dom.svg.SVGAnimatedString;
* This class implements {@link SVGAElement}.
*
* @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
extends SVGURIReferenceGraphicsElement

View File

@ -27,7 +27,7 @@ import org.w3c.dom.svg.SVGAltGlyphDefElement;
* This class implements {@link SVGAltGlyphDefElement}.
*
* @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
extends SVGOMElement

View File

@ -30,7 +30,7 @@ import org.w3c.dom.svg.SVGAltGlyphElement;
* This class implements {@link SVGAltGlyphElement}.
*
* @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
extends SVGURIReferenceTextPositioningElement

View File

@ -26,7 +26,7 @@ import org.w3c.dom.svg.SVGAltGlyphItemElement;
* This class implements {@link SVGAltGlyphItemElement}.
*
* @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
extends SVGOMElement

View File

@ -27,7 +27,7 @@ import org.w3c.dom.svg.SVGAnimateColorElement;
* This class implements {@link SVGAnimateColorElement}.
*
* @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
extends SVGOMAnimationElement

View File

@ -27,7 +27,7 @@ import org.w3c.dom.svg.SVGAnimateElement;
* This class implements {@link SVGAnimateElement}.
*
* @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
extends SVGOMAnimationElement

View File

@ -27,7 +27,7 @@ import org.w3c.dom.svg.SVGAnimateMotionElement;
* This class implements {@link SVGAnimateMotionElement}.
*
* @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
extends SVGOMAnimationElement

View File

@ -27,7 +27,7 @@ import org.w3c.dom.svg.SVGAnimateTransformElement;
* This class implements {@link SVGAnimateTransformElement}.
*
* @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
extends SVGOMAnimationElement

View File

@ -29,7 +29,7 @@ import org.w3c.dom.svg.SVGAnimatedBoolean;
* This class implements the {@link SVGAnimatedBoolean} interface.
*
* @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
extends AbstractSVGAnimatedValue

View File

@ -31,7 +31,7 @@ import org.w3c.dom.svg.SVGAnimatedEnumeration;
* SVGAnimatedEnumeration} interface.
*
* @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
implements SVGAnimatedEnumeration {

View File

@ -29,7 +29,7 @@ import org.w3c.dom.svg.SVGAnimatedInteger;
* This class implements the {@link SVGAnimatedInteger} interface.
*
* @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
extends AbstractSVGAnimatedValue

View File

@ -24,7 +24,7 @@ package org.apache.batik.anim.dom;
* org.w3c.dom.svg.SVGAnimatedLength} interface.
*
* @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 {

View File

@ -41,7 +41,7 @@ import org.apache.batik.parser.ParseException;
* interface.
*
* @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
extends AbstractSVGAnimatedValue

View File

@ -35,7 +35,7 @@ import org.w3c.dom.svg.SVGMarkerElement;
* 'orient' attribute.
*
* @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 {

View File

@ -29,7 +29,7 @@ import org.w3c.dom.svg.SVGAnimatedNumber;
* This class implements the {@link SVGAnimatedNumber} interface.
*
* @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
extends AbstractSVGAnimatedValue

View File

@ -44,7 +44,7 @@ import org.w3c.dom.svg.SVGNumberList;
* interface.
*
* @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
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:andrest@world-affair.com">Andres Toussaint</a>
* @version $Id: SVGOMAnimatedPathData.java 1831635 2018-05-15 13:33:47Z ssteiner $
* @version $Id$
*/
public class SVGOMAnimatedPathData
extends AbstractSVGAnimatedValue

View File

@ -42,7 +42,7 @@ import org.w3c.dom.svg.SVGPointList;
* This class is the implementation of the SVGAnimatedPoints interface.
*
* @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
extends AbstractSVGAnimatedValue

View File

@ -34,7 +34,7 @@ import org.w3c.dom.svg.SVGPreserveAspectRatio;
* This class implements the {@link SVGAnimatedPreserveAspectRatio} interface.
*
* @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
extends AbstractSVGAnimatedValue

View File

@ -35,7 +35,7 @@ import org.w3c.dom.svg.SVGRect;
* Implementation of {@link SVGAnimatedRect}.
*
* @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
extends AbstractSVGAnimatedValue

View File

@ -29,7 +29,7 @@ import org.w3c.dom.svg.SVGAnimatedString;
* This class implements the {@link SVGAnimatedString} interface.
*
* @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
implements SVGAnimatedString {

View File

@ -41,7 +41,7 @@ import org.apache.batik.parser.ParseException;
* This class is the implementation of the SVGAnimatedTransformList interface.
*
* @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
extends AbstractSVGAnimatedValue

View File

@ -35,7 +35,7 @@ import org.w3c.dom.svg.SVGStringList;
* This class provides an implementation of the {@link SVGAnimationElement} interface.
*
* @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
extends SVGOMElement

View File

@ -30,7 +30,7 @@ import org.w3c.dom.svg.SVGCircleElement;
* This class implements {@link SVGCircleElement}.
*
* @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
extends SVGGraphicsElement

View File

@ -30,7 +30,7 @@ import org.w3c.dom.svg.SVGClipPathElement;
* This class implements {@link SVGClipPathElement}.
*
* @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
extends SVGGraphicsElement

View File

@ -31,7 +31,7 @@ import org.w3c.dom.svg.SVGColorProfileElement;
* This class implements {@link org.w3c.dom.svg.SVGColorProfileElement}.
*
* @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
extends SVGOMURIReferenceElement

View File

@ -31,7 +31,7 @@ import org.w3c.dom.svg.SVGComponentTransferFunctionElement;
* This class represents the component transfer function elements.
*
* @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
extends SVGOMElement

View File

@ -35,7 +35,7 @@ import org.w3c.dom.svg.SVGStringList;
* This class implements {@link org.w3c.dom.svg.SVGCursorElement}.
*
* @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
extends SVGOMURIReferenceElement

View File

@ -26,7 +26,7 @@ import org.w3c.dom.svg.SVGDefinitionSrcElement;
* This class implements {@link SVGDefinitionSrcElement}.
*
* @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
extends SVGOMElement

View File

@ -26,7 +26,7 @@ import org.w3c.dom.svg.SVGDefsElement;
* This class implements {@link SVGDefsElement}.
*
* @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
extends SVGGraphicsElement

View File

@ -26,7 +26,7 @@ import org.w3c.dom.svg.SVGDescElement;
* This class implements {@link SVGDescElement}.
*
* @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
extends SVGDescriptiveElement

View File

@ -77,7 +77,7 @@ import org.w3c.dom.svg.SVGSVGElement;
* This class implements {@link SVGDocument}.
*
* @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
extends AbstractStylableDocument

View File

@ -55,7 +55,7 @@ import org.w3c.dom.svg.SVGSVGElement;
* This class implements the {@link SVGElement} interface.
*
* @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
extends AbstractElement

View File

@ -30,7 +30,7 @@ import org.w3c.dom.svg.SVGEllipseElement;
* This class implements {@link SVGEllipseElement}.
*
* @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
extends SVGGraphicsElement

View File

@ -31,7 +31,7 @@ import org.w3c.dom.svg.SVGFEBlendElement;
* This class implements {@link SVGFEBlendElement}.
*
* @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
extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -32,7 +32,7 @@ import org.w3c.dom.svg.SVGFEColorMatrixElement;
* This class implements {@link SVGFEColorMatrixElement}.
*
* @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
extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -30,7 +30,7 @@ import org.w3c.dom.svg.SVGFEComponentTransferElement;
* This class implements {@link SVGFEComponentTransferElement}.
*
* @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
extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -32,7 +32,7 @@ import org.w3c.dom.svg.SVGFECompositeElement;
* This class implements {@link SVGFECompositeElement}.
*
* @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
extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -35,7 +35,7 @@ import org.w3c.dom.svg.SVGFEConvolveMatrixElement;
* This class implements {@link SVGFEConvolveMatrixElement}.
*
* @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
extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -31,7 +31,7 @@ import org.w3c.dom.svg.SVGFEDiffuseLightingElement;
* This class implements {@link SVGFEDiffuseLightingElement}.
*
* @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
extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -32,7 +32,7 @@ import org.w3c.dom.svg.SVGFEDisplacementMapElement;
* This class implements {@link org.w3c.dom.svg.SVGFEDisplacementMapElement}.
*
* @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
extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -30,7 +30,7 @@ import org.w3c.dom.svg.SVGFEDistantLightElement;
* This class implements {@link SVGFEDistantLightElement}.
*
* @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
extends SVGOMElement

View File

@ -30,7 +30,7 @@ import org.w3c.dom.svg.SVGFEFloodElement;
* This class implements {@link SVGFEFloodElement}.
*
* @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
extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -26,7 +26,7 @@ import org.w3c.dom.svg.SVGFEFuncAElement;
* This class implements {@link SVGFEFuncAElement}.
*
* @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
extends SVGOMComponentTransferFunctionElement

View File

@ -26,7 +26,7 @@ import org.w3c.dom.svg.SVGFEFuncBElement;
* This class implements {@link SVGFEFuncBElement}.
*
* @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
extends SVGOMComponentTransferFunctionElement

View File

@ -26,7 +26,7 @@ import org.w3c.dom.svg.SVGFEFuncGElement;
* This class implements {@link SVGFEFuncGElement}.
*
* @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
extends SVGOMComponentTransferFunctionElement

View File

@ -26,7 +26,7 @@ import org.w3c.dom.svg.SVGFEFuncRElement;
* This class implements {@link SVGFEFuncRElement}.
*
* @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
extends SVGOMComponentTransferFunctionElement

View File

@ -31,7 +31,7 @@ import org.w3c.dom.svg.SVGFEGaussianBlurElement;
* This class implements {@link SVGFEGaussianBlurElement}.
*
* @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
extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -34,7 +34,7 @@ import org.w3c.dom.svg.SVGFEImageElement;
* This class implements {@link SVGFEImageElement}.
*
* @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
extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -26,7 +26,7 @@ import org.w3c.dom.svg.SVGFEMergeElement;
* This class implements {@link SVGFEMergeElement}.
*
* @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
extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -30,7 +30,7 @@ import org.w3c.dom.svg.SVGFEMergeNodeElement;
* This class implements {@link SVGFEMergeNodeElement}.
*
* @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
extends SVGOMElement

View File

@ -32,7 +32,7 @@ import org.w3c.dom.svg.SVGFEMorphologyElement;
* This class implements {@link SVGFEMorphologyElement}.
*
* @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
extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -31,7 +31,7 @@ import org.w3c.dom.svg.SVGFEOffsetElement;
* This class implements {@link SVGFEOffsetElement}.
*
* @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
extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -30,7 +30,7 @@ import org.w3c.dom.svg.SVGFEPointLightElement;
* This class implements {@link SVGFEPointLightElement}.
*
* @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
extends SVGOMElement

View File

@ -31,7 +31,7 @@ import org.w3c.dom.svg.SVGFESpecularLightingElement;
* This class implements {@link SVGFESpecularLightingElement}.
*
* @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
extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -30,7 +30,7 @@ import org.w3c.dom.svg.SVGFESpotLightElement;
* This class implements {@link SVGFESpotLightElement}.
*
* @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
extends SVGOMElement

View File

@ -30,7 +30,7 @@ import org.w3c.dom.svg.SVGFETileElement;
* This class implements {@link SVGFETileElement}.
*
* @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
extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -32,7 +32,7 @@ import org.w3c.dom.svg.SVGFETurbulenceElement;
* This class implements {@link SVGFETurbulenceElement}.
*
* @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
extends SVGOMFilterPrimitiveStandardAttributes

View File

@ -36,7 +36,7 @@ import org.w3c.dom.svg.SVGFilterElement;
* This class implements {@link SVGFilterElement}.
*
* @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
extends SVGStylableElement

View File

@ -31,7 +31,7 @@ import org.w3c.dom.svg.SVGFilterPrimitiveStandardAttributes;
* attributes.
*
* @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
extends SVGStylableElement

View File

@ -27,7 +27,7 @@ import org.w3c.dom.svg.SVGTextContentElement;
* This class implements the flowDiv element from SVG 1.2
*
* @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
extends SVGOMTextContentElement

View File

@ -26,7 +26,7 @@ import org.w3c.dom.Node;
* This class implements a regular polygon extension to SVG
*
* @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
extends SVGOMTextPositioningElement {

View File

@ -27,7 +27,7 @@ import org.w3c.dom.Node;
* This class implements a regular polygon extension to SVG
*
* @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
extends SVGOMTextPositioningElement {

View File

@ -26,7 +26,7 @@ import org.w3c.dom.Node;
* This class implements a regular polygon extension to SVG
*
* @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
extends SVGOMTextPositioningElement {

View File

@ -26,7 +26,7 @@ import org.w3c.dom.Node;
* This class implements a regular polygon extension to SVG
*
* @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 {

View File

@ -26,7 +26,7 @@ import org.w3c.dom.Node;
* This class implements a regular polygon extension to SVG
*
* @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 {

View File

@ -26,7 +26,7 @@ import org.w3c.dom.Node;
* This class implements a regular polygon extension to SVG
*
* @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 {

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