blob: 95a1c7684644296b556426e0150d7d667059be34 [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.apache.batik.dom.util.DoublyIndexedTable;
import org.w3c.dom.Node;
import org.w3c.dom.svg.SVGAnimatedEnumeration;
import org.w3c.dom.svg.SVGAnimatedNumberList;
import org.w3c.dom.svg.SVGAnimatedString;
import org.w3c.dom.svg.SVGFEColorMatrixElement;
/**
* This class implements {@link SVGFEColorMatrixElement}.
*
* @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
* @version $Id$
*/
public class SVGOMFEColorMatrixElement
extends SVGOMFilterPrimitiveStandardAttributes
implements SVGFEColorMatrixElement {
/**
* The attribute initializer.
*/
protected final static AttributeInitializer attributeInitializer;
static {
attributeInitializer = new AttributeInitializer(1);
attributeInitializer.addAttribute(null,
null,
SVG_TYPE_ATTRIBUTE,
SVG_MATRIX_VALUE);
}
/**
* Creates a new SVGOMFEColorMatrixElement object.
*/
protected SVGOMFEColorMatrixElement() {
}
/**
* Creates a new SVGOMFEColorMatrixElement object.
* @param prefix The namespace prefix.
* @param owner The owner document.
*/
public SVGOMFEColorMatrixElement(String prefix, AbstractDocument owner) {
super(prefix, owner);
}
/**
* <b>DOM</b>: Implements {@link Node#getLocalName()}.
*/
public String getLocalName() {
return SVG_FE_COLOR_MATRIX_TAG;
}
/**
* <b>DOM</b>: Implements {@link SVGFEColorMatrixElement#getIn1()}.
*/
public SVGAnimatedString getIn1() {
throw new RuntimeException("!!! TODO: getIn1()");
}
/**
* <b>DOM</b>: Implements {@link SVGFEColorMatrixElement#getType()}.
*/
public SVGAnimatedEnumeration getType() {
throw new RuntimeException("!!! TODO: getType()");
}
/**
* <b>DOM</b>: Implements {@link SVGFEColorMatrixElement#getValues()}.
*/
public SVGAnimatedNumberList getValues() {
throw new RuntimeException("!!! TODO: getValues()");
}
/**
* Returns the AttributeInitializer for this element type.
* @return null if this element has no attribute with a default value.
*/
protected AttributeInitializer getAttributeInitializer() {
return attributeInitializer;
}
/**
* Returns a new uninitialized instance of this object's class.
*/
protected Node newNode() {
return new SVGOMFEColorMatrixElement();
}
}