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