diff options
Diffstat (limited to 'src/org/apache/fop/svg/TextGraphic.java')
-rw-r--r-- | src/org/apache/fop/svg/TextGraphic.java | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/org/apache/fop/svg/TextGraphic.java b/src/org/apache/fop/svg/TextGraphic.java index 736c74897..98be0c70f 100644 --- a/src/org/apache/fop/svg/TextGraphic.java +++ b/src/org/apache/fop/svg/TextGraphic.java @@ -50,59 +50,30 @@ */ package org.apache.fop.svg; - - /** - * class representing text in an SVG Area - */ - public class TextGraphic extends Graphic { - - /** x-coordinate of text */ - public int x; - - /** y-coordinate of text */ - public int y; - - /** the text string itself */ - public String s; - - /** - * construct a text graphic - * - * @param x x-coordinate of text - * @param y y-coordinate of text - * @param s the text string - */ - public TextGraphic(int x, int y, String s) { - this.x = x; - this.y = y; - this.s = s; - } - } - |