summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/svg/FillElement.java
diff options
context:
space:
mode:
authorkitfox2013-03-19 06:20:37 +0100
committerkitfox2013-03-19 06:20:37 +0100
commit6776ed9f1a81e517139d85eb6d2e28911fd0fc35 (patch)
treee169f598f518670f5434d75d1b76ceb3c0765d32 /src/main/java/com/kitfox/svg/FillElement.java
parentError handling now sends warnings to Logger. (diff)
downloadsvg-salamander-core-6776ed9f1a81e517139d85eb6d2e28911fd0fc35.tar.gz
svg-salamander-core-6776ed9f1a81e517139d85eb6d2e28911fd0fc35.tar.xz
svg-salamander-core-6776ed9f1a81e517139d85eb6d2e28911fd0fc35.zip
Adding support for style sheets.
git-svn-id: https://svn.java.net/svn/svgsalamander~svn/trunk/svg-core@153 7dc7fa77-23fb-e6ad-8e2e-c86bd48ed22b
Diffstat (limited to 'src/main/java/com/kitfox/svg/FillElement.java')
-rw-r--r--src/main/java/com/kitfox/svg/FillElement.java21
1 files changed, 12 insertions, 9 deletions
diff --git a/src/main/java/com/kitfox/svg/FillElement.java b/src/main/java/com/kitfox/svg/FillElement.java
index a09f69a..1bc6cf8 100644
--- a/src/main/java/com/kitfox/svg/FillElement.java
+++ b/src/main/java/com/kitfox/svg/FillElement.java
@@ -33,7 +33,6 @@
*
* Created on March 18, 2004, 6:52 AM
*/
-
package com.kitfox.svg;
import java.awt.*;
@@ -43,18 +42,22 @@ import java.awt.geom.*;
* @author Mark McKay
* @author <a href="mailto:mark@kitfox.com">Mark McKay</a>
*/
-abstract public class FillElement extends SVGElement {
-
- /** Creates a new instance of FillElement */
- public FillElement() {
+abstract public class FillElement extends SVGElement
+{
+ /**
+ * Creates a new instance of FillElement
+ */
+ public FillElement()
+ {
}
/**
- * Requests the paint defined by this element. Passes in information
- * to allow paint to be customized
+ * Requests the paint defined by this element. Passes in information to
+ * allow paint to be customized
+ *
* @param bounds - bounding box of shape being rendered
- * @param xform - The current transformation that the shape is being rendered
- * under.
+ * @param xform - The current transformation that the shape is being
+ * rendered under.
*/
abstract public Paint getPaint(Rectangle2D bounds, AffineTransform xform);
}