1 18 package org.apache.batik.dom.svg12; 19 20 import org.apache.batik.dom.AbstractDocument; 21 import org.apache.batik.dom.svg.SVGStylableElement; 22 import org.apache.batik.util.SVG12Constants; 23 import org.w3c.dom.Node ; 24 25 31 public class SVGOMFlowRegionElement extends SVGStylableElement { 32 33 36 protected SVGOMFlowRegionElement() { 37 } 38 39 44 public SVGOMFlowRegionElement(String prefix, AbstractDocument owner) { 45 super(prefix, owner); 46 } 47 48 51 public String getLocalName() { 52 return SVG12Constants.SVG_FLOW_REGION_TAG; 53 } 54 55 58 protected Node newNode() { 59 return new SVGOMFlowRegionElement(); 60 } 61 } 62 | Popular Tags |