1 18 package org.apache.batik.dom.svg; 19 20 import org.apache.batik.dom.AbstractDocument; 21 import org.w3c.dom.svg.SVGAnimatedLengthList; 22 import org.w3c.dom.svg.SVGAnimatedNumberList; 23 import org.w3c.dom.svg.SVGTextPositioningElement; 24 25 31 public abstract class SVGOMTextPositioningElement 32 extends SVGOMTextContentElement 33 implements SVGTextPositioningElement { 34 35 38 protected SVGOMTextPositioningElement() { 39 } 40 41 46 protected SVGOMTextPositioningElement(String prefix, 47 AbstractDocument owner) { 48 super(prefix, owner); 49 } 50 51 54 public SVGAnimatedLengthList getX() { 55 return SVGTextPositioningElementSupport.getX(this); 57 } 58 59 62 public SVGAnimatedLengthList getY() { 63 return SVGTextPositioningElementSupport.getY(this); 65 } 66 67 70 public SVGAnimatedLengthList getDx() { 71 return SVGTextPositioningElementSupport.getDx(this); 73 } 74 75 78 public SVGAnimatedLengthList getDy() { 79 return SVGTextPositioningElementSupport.getDy(this); 81 } 82 83 86 public SVGAnimatedNumberList getRotate() { 87 throw new RuntimeException (" !!! SVGOMTextPositioningElement.getRotate()"); 88 } 89 90 } 91 | Popular Tags |