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.SVGAnimatedBoolean; 23 import org.w3c.dom.svg.SVGFontElement; 24 25 31 public class SVGOMFontElement 32 extends SVGStylableElement 33 implements SVGFontElement { 34 35 38 protected SVGOMFontElement() { 39 } 40 41 46 public SVGOMFontElement(String prefix, AbstractDocument owner) { 47 super(prefix, owner); 48 } 49 50 53 public String getLocalName() { 54 return SVG_FONT_TAG; 55 } 56 57 59 63 public SVGAnimatedBoolean getExternalResourcesRequired() { 64 return SVGExternalResourcesRequiredSupport. 65 getExternalResourcesRequired(this); 66 } 67 68 71 protected Node newNode() { 72 return new SVGOMFontElement(); 73 } 74 } 75 | Popular Tags |