summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGTextPositioningElement.java
blob: 93b9b60f50757ea414443bc5086da540e16016ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11

package org.w3c.dom.svg;

public interface SVGTextPositioningElement extends 
               SVGTextContentElement {
  public SVGAnimatedLengthList getX( );
  public SVGAnimatedLengthList getY( );
  public SVGAnimatedLengthList getDx( );
  public SVGAnimatedLengthList getDy( );
  public SVGAnimatedNumberList getRotate( );
}