blob: ca63a5f5719fdea9db8acdcf64adaa7910f4a50c [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.SVGAnimatedLength;
import org.w3c.dom.svg.SVGHKernElement;
/**
* This class implements {@link SVGHKernElement}.
*
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id$
*/
public class SVGOMHKernElement
extends SVGOMElement
implements SVGHKernElement {
/**
* Creates a new SVGOMHKernElement object.
*/
protected SVGOMHKernElement() {
}
/**
* Creates a new SVGOMHKernElement object.
* @param prefix The namespace prefix.
* @param owner The owner document.
*/
public SVGOMHKernElement(String prefix, AbstractDocument owner) {
super(prefix, owner);
}
/**
* <b>DOM</b>: Implements {@link Node#getLocalName()}.
*/
public String getLocalName() {
return SVG_HKERN_TAG;
}
/**
* Returns a new uninitialized instance of this object's class.
*/
protected Node newNode() {
return new SVGOMHKernElement();
}
}