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