summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/basic/SVGStylable.java
diff options
context:
space:
mode:
authorkitfox2007-04-13 00:46:34 +0200
committerkitfox2007-04-13 00:46:34 +0200
commit79060105be1925398bd904d5a8cb9fb69baa949c (patch)
tree795039b8d3a408822e4c9fe95cdfbe0d20e1928a /src/main/java/com/kitfox/salamander/svg/basic/SVGStylable.java
parentPseudocode for main rendering logic. Roughing in SVG structure. (diff)
downloadsvg-salamander-core-79060105be1925398bd904d5a8cb9fb69baa949c.tar.gz
svg-salamander-core-79060105be1925398bd904d5a8cb9fb69baa949c.tar.xz
svg-salamander-core-79060105be1925398bd904d5a8cb9fb69baa949c.zip
Added Document Structure interfaces
git-svn-id: https://svn.java.net/svn/svgsalamander~svn/trunk/svg-core@13 7dc7fa77-23fb-e6ad-8e2e-c86bd48ed22b
Diffstat (limited to 'src/main/java/com/kitfox/salamander/svg/basic/SVGStylable.java')
-rwxr-xr-xsrc/main/java/com/kitfox/salamander/svg/basic/SVGStylable.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/com/kitfox/salamander/svg/basic/SVGStylable.java b/src/main/java/com/kitfox/salamander/svg/basic/SVGStylable.java
index 41cdc13..15b2f4d 100755
--- a/src/main/java/com/kitfox/salamander/svg/basic/SVGStylable.java
+++ b/src/main/java/com/kitfox/salamander/svg/basic/SVGStylable.java
@@ -9,6 +9,7 @@
package com.kitfox.salamander.svg.basic;
+import com.kitfox.salamander.svg.DOMString;
import org.w3c.dom.css.CSSStyleDeclaration;
import org.w3c.dom.css.CSSValue;
@@ -31,5 +32,5 @@ public interface SVGStylable
* @param name Retrieves a "presentation attribute" by name.
* @return The static/base value of the given presentation attribute as a CSSValue, or NULL if the given attribute does not have a specified value.
*/
- public CSSValue getPresentationAttribute(SVGString name);
+ public CSSValue getPresentationAttribute(DOMString name);
}