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.SVGFEMergeElement; 23 24 30 public class SVGOMFEMergeElement 31 extends SVGOMFilterPrimitiveStandardAttributes 32 implements SVGFEMergeElement { 33 34 37 protected SVGOMFEMergeElement() { 38 } 39 40 45 public SVGOMFEMergeElement(String prefix, AbstractDocument owner) { 46 super(prefix, owner); 47 } 48 49 52 public String getLocalName() { 53 return SVG_FE_MERGE_TAG; 54 } 55 56 59 protected Node newNode() { 60 return new SVGOMFEMergeElement(); 61 } 62 } 63 | Popular Tags |