summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/text/SVGTextPositioningElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/text/SVGTextPositioningElement.java')
-rw-r--r--src/main/java/com/kitfox/salamander/svg/text/SVGTextPositioningElement.java42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/main/java/com/kitfox/salamander/svg/text/SVGTextPositioningElement.java b/src/main/java/com/kitfox/salamander/svg/text/SVGTextPositioningElement.java
deleted file mode 100644
index 61d0897..0000000
--- a/src/main/java/com/kitfox/salamander/svg/text/SVGTextPositioningElement.java
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * SVGTextPositioningElement.java
- *
- * Created on April 13, 2007, 9:43 AM
- *
- * To change this template, choose Tools | Template Manager
- * and open the template in the editor.
- */
-
-package com.kitfox.salamander.svg.text;
-
-import com.kitfox.salamander.svg.basic.SVGAnimatedLengthList;
-import com.kitfox.salamander.svg.basic.SVGAnimatedNumberList;
-
-/**
- * The SVGTextPositioningElement interface is inherited by text-related interfaces: SVGTextElement, SVGTSpanElement, SVGTRefElement and SVGAltGlyphElement.
- * @author kitfox
- */
-public interface SVGTextPositioningElement extends SVGTextContentElement
-{
- /**
- * Corresponds to attribute x on the given element.
- */
- public SVGAnimatedLengthList getX();
- /**
- * Corresponds to attribute y on the given element.
- */
- public SVGAnimatedLengthList getY();
- /**
- * Corresponds to attribute dx on the given element.
- */
- public SVGAnimatedLengthList getDx();
- /**
- * Corresponds to attribute dy on the given element.
- */
- public SVGAnimatedLengthList getDy();
- /**
- * Corresponds to attribute rotate on the given element.
- */
- public SVGAnimatedNumberList getRotate();
-
-}