summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/text/SVGTextPathElement.java
diff options
context:
space:
mode:
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();
}