blob: b19a7adf4e87c837726b260567c0392464038c19 [file] [log] [blame]
/*****************************************************************************
* Copyright (C) The Apache Software Foundation. All rights reserved. *
* ------------------------------------------------------------------------- *
* This software is published under the terms of the Apache Software License *
* version 1.1, a copy of which has been included with this distribution in *
* the LICENSE file. *
*****************************************************************************/
package org.apache.batik.dom.svg;
import org.apache.batik.dom.AbstractDocument;
import org.w3c.dom.Node;
import org.w3c.dom.svg.SVGAnimateElement;
/**
* This class implements {@link SVGAnimateElement}.
*
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id$
*/
public class SVGOMAnimateElement
extends SVGOMAnimationElement
implements SVGAnimateElement {
/**
* Creates a new SVGOMAnimateElement object.
*/
protected SVGOMAnimateElement() {
}
/**
* Creates a new SVGOMAnimateElement object.
* @param prefix The namespace prefix.
* @param owner The owner document.
*/
public SVGOMAnimateElement(String prefix, AbstractDocument owner) {
super(prefix, owner);
}
/**
* <b>DOM</b>: Implements {@link Node#getLocalName()}.
*/
public String getLocalName() {
return SVG_ANIMATE_TAG;
}
/**
* Returns a new uninitialized instance of this object's class.
*/
protected Node newNode() {
return new SVGOMAnimateElement();
}
}