summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/text/SVGTextPathElement.java
diff options
context:
space:
mode:
authorkitfox2007-04-13 17:37:54 +0200
committerkitfox2007-04-13 17:37:54 +0200
commitda3090bc6de061f2b611138a9fbfe6f2db477cfc (patch)
tree96ef86d88f17a3333412ead9a5497b459871d719 /src/main/java/com/kitfox/salamander/svg/text/SVGTextPathElement.java
parentAdded text and formatting interfaces. (diff)
downloadsvg-salamander-core-da3090bc6de061f2b611138a9fbfe6f2db477cfc.tar.gz
svg-salamander-core-da3090bc6de061f2b611138a9fbfe6f2db477cfc.tar.xz
svg-salamander-core-da3090bc6de061f2b611138a9fbfe6f2db477cfc.zip
Added filter interfaces.
git-svn-id: https://svn.java.net/svn/svgsalamander~svn/trunk/svg-core@23 7dc7fa77-23fb-e6ad-8e2e-c86bd48ed22b
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/text/SVGTextPathElement.java')
-rw-r--r--src/main/java/com/kitfox/salamander/svg/text/SVGTextPathElement.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/kitfox/salamander/svg/text/SVGTextPathElement.java b/src/main/java/com/kitfox/salamander/svg/text/SVGTextPathElement.java
index 2f7ce16..8b8c589 100644
--- a/src/main/java/com/kitfox/salamander/svg/text/SVGTextPathElement.java
+++ b/src/main/java/com/kitfox/salamander/svg/text/SVGTextPathElement.java
@@ -55,9 +55,9 @@ public interface SVGTextPathElement extends SVGTextContentElement, SVGURIReferen
/**
* Corresponds to attribute method on the given 'textPath' element. The value must be one of the method type constants specified above.
*/
- public SVGAnimatedEnumeration getMethod();
+ public SVGAnimatedEnumeration<MethodType> getMethod();
/**
* Corresponds to attribute spacing on the given 'textPath' element. The value must be one of the spacing type constants specified above.
*/
- public SVGAnimatedEnumeration getSpacing();
+ public SVGAnimatedEnumeration<SpacingType> getSpacing();
}