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