From d196717d149e9051b1943487e8bfd1d2be0fe50d Mon Sep 17 00:00:00 2001 From: kitfox Date: Fri, 13 Apr 2007 11:55:06 +0000 Subject: Fixed bad imports. git-svn-id: https://svn.java.net/svn/svgsalamander~svn/trunk/svg-core@17 7dc7fa77-23fb-e6ad-8e2e-c86bd48ed22b --- manifest.mf | 2 +- src/main/java/com/kitfox/salamander/svg/basic/SVGLengthList.java | 3 --- src/main/java/com/kitfox/salamander/svg/basic/SVGList.java | 2 +- src/main/java/com/kitfox/salamander/svg/basic/SVGNumberList.java | 3 --- src/main/java/com/kitfox/salamander/svg/basic/SVGStringList.java | 3 --- src/main/java/com/kitfox/salamander/svg/paths/SVGPathElement.java | 6 ++++-- 6 files changed, 6 insertions(+), 13 deletions(-) diff --git a/manifest.mf b/manifest.mf index 10cc22d..b25c343 100755 --- a/manifest.mf +++ b/manifest.mf @@ -9,6 +9,6 @@ Specification-Title: SVG Salamander Specification-Version: 1 Specification-Vendor: Kitfox Implementation-Title: svg-salamander-core -Implementation-Version: Version 1, Date April 12 2007 +Implementation-Version: Version 1, Date April 13 2007 Implementation-Vendor: Mark McKay, mark@kitfox.com diff --git a/src/main/java/com/kitfox/salamander/svg/basic/SVGLengthList.java b/src/main/java/com/kitfox/salamander/svg/basic/SVGLengthList.java index 5b7522d..03f5cc5 100755 --- a/src/main/java/com/kitfox/salamander/svg/basic/SVGLengthList.java +++ b/src/main/java/com/kitfox/salamander/svg/basic/SVGLengthList.java @@ -9,9 +9,6 @@ package com.kitfox.salamander.svg.basic; -import com.kitfox.salamander.svg.DOMException; -import com.kitfox.salamander.svg.SVGException; - /** * This interface defines a list of DOMSVGNumber objects. diff --git a/src/main/java/com/kitfox/salamander/svg/basic/SVGList.java b/src/main/java/com/kitfox/salamander/svg/basic/SVGList.java index 7d53f3b..05949ed 100755 --- a/src/main/java/com/kitfox/salamander/svg/basic/SVGList.java +++ b/src/main/java/com/kitfox/salamander/svg/basic/SVGList.java @@ -9,8 +9,8 @@ package com.kitfox.salamander.svg.basic; -import com.kitfox.salamander.svg.DOMException; import com.kitfox.salamander.svg.SVGException; +import org.w3c.dom.DOMException; /** diff --git a/src/main/java/com/kitfox/salamander/svg/basic/SVGNumberList.java b/src/main/java/com/kitfox/salamander/svg/basic/SVGNumberList.java index 72e2a22..938b7d2 100755 --- a/src/main/java/com/kitfox/salamander/svg/basic/SVGNumberList.java +++ b/src/main/java/com/kitfox/salamander/svg/basic/SVGNumberList.java @@ -9,9 +9,6 @@ package com.kitfox.salamander.svg.basic; -import com.kitfox.salamander.svg.DOMException; -import com.kitfox.salamander.svg.SVGException; - /** * This interface defines a list of DOMSVGNumber objects. diff --git a/src/main/java/com/kitfox/salamander/svg/basic/SVGStringList.java b/src/main/java/com/kitfox/salamander/svg/basic/SVGStringList.java index 1909fd9..43b8930 100755 --- a/src/main/java/com/kitfox/salamander/svg/basic/SVGStringList.java +++ b/src/main/java/com/kitfox/salamander/svg/basic/SVGStringList.java @@ -9,10 +9,7 @@ package com.kitfox.salamander.svg.basic; -import com.kitfox.salamander.svg.DOMException; import com.kitfox.salamander.svg.DOMString; -import com.kitfox.salamander.svg.SVGException; - /** * This interface defines a list of DOMString objects. diff --git a/src/main/java/com/kitfox/salamander/svg/paths/SVGPathElement.java b/src/main/java/com/kitfox/salamander/svg/paths/SVGPathElement.java index dce8ab3..a1e6e9f 100644 --- a/src/main/java/com/kitfox/salamander/svg/paths/SVGPathElement.java +++ b/src/main/java/com/kitfox/salamander/svg/paths/SVGPathElement.java @@ -9,12 +9,14 @@ package com.kitfox.salamander.svg.paths; +import com.kitfox.salamander.svg.basic.SVGAnimatedNumber; import com.kitfox.salamander.svg.basic.SVGElement; import com.kitfox.salamander.svg.basic.SVGExternalResourcesRequired; import com.kitfox.salamander.svg.basic.SVGLangSpace; import com.kitfox.salamander.svg.basic.SVGStylable; import com.kitfox.salamander.svg.basic.SVGTests; import com.kitfox.salamander.svg.basic.SVGTransformable; +import com.kitfox.salamander.svg.coordSystems.SVGPoint; import org.w3c.dom.events.EventTarget; /** @@ -131,7 +133,7 @@ public interface SVGPathElement extends SVGElement, SVGTests, SVGLangSpace, * @param sweepFlag The value for the sweep-flag parameter. * @return A stand-alone, parentless SVGPathSegArcAbs object. A stand-alone, parentless SVGPathSegArcAbs object. */ - public SVGPathSegArcAbs createSVGPathSegArcAbs(float x, float y, float r1, float r2, float angle, boolean largeArcFlag, boolean sweepFlag); + public SVGPathSegCurvetoArcAbs createSVGPathSegArcAbs(float x, float y, float r1, float r2, float angle, boolean largeArcFlag, boolean sweepFlag); /** * Returns a stand-alone, parentless SVGPathSegArcRel object. * @param x The relative X coordinate for the end point of this path segment. @@ -143,7 +145,7 @@ public interface SVGPathElement extends SVGElement, SVGTests, SVGLangSpace, * @param sweepFlag The value for the sweep-flag parameter. * @return A stand-alone, parentless SVGPathSegArcRel object. */ - public SVGPathSegArcRel createSVGPathSegArcRel(float x, float y, float r1, float r2, float angle, boolean largeArcFlag, boolean sweepFlag); + public SVGPathSegCurvetoArcRel createSVGPathSegArcRel(float x, float y, float r1, float r2, float angle, boolean largeArcFlag, boolean sweepFlag); /** * Returns a stand-alone, parentless SVGPathSegLinetoHorizontalAbs object. * @param x The absolute X coordinate for the end point of this path segment. -- cgit v1.2.3-55-g7522