1 18 package org.apache.batik.dom.svg; 19 20 import org.apache.batik.dom.AbstractDocument; 21 import org.w3c.dom.Node ; 22 import org.w3c.dom.svg.SVGAnimatedString; 23 import org.w3c.dom.svg.SVGFEComponentTransferElement; 24 25 31 public class SVGOMFEComponentTransferElement 32 extends SVGOMFilterPrimitiveStandardAttributes 33 implements SVGFEComponentTransferElement { 34 35 38 protected SVGOMFEComponentTransferElement() { 39 } 40 41 46 public SVGOMFEComponentTransferElement(String prefix, 47 AbstractDocument owner) { 48 super(prefix, owner); 49 } 50 51 54 public String getLocalName() { 55 return SVG_FE_COMPONENT_TRANSFER_TAG; 56 } 57 58 61 public SVGAnimatedString getIn1() { 62 return getAnimatedStringAttribute(null, SVG_IN_ATTRIBUTE); 63 } 64 65 68 protected Node newNode() { 69 return new SVGOMFEComponentTransferElement(); 70 } 71 } 72 | Popular Tags |