diff options
Diffstat (limited to 'src/org/apache/fop/svg/PDFGraphics2D.java')
-rw-r--r-- | src/org/apache/fop/svg/PDFGraphics2D.java | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/src/org/apache/fop/svg/PDFGraphics2D.java b/src/org/apache/fop/svg/PDFGraphics2D.java index 63493cacc..a48c4e7d6 100644 --- a/src/org/apache/fop/svg/PDFGraphics2D.java +++ b/src/org/apache/fop/svg/PDFGraphics2D.java @@ -31,7 +31,7 @@ import java.awt.image.renderable.*; import java.io.*; import java.util.Map; -import java.util.Vector; +import java.util.ArrayList; import java.util.Hashtable; /** @@ -645,40 +645,40 @@ public class PDFGraphics2D extends AbstractGraphics2D { Point2D p2 = gp.getPoint2(); boolean cyclic = gp.isCyclic(); - Vector theCoords = new Vector(); - theCoords.addElement(new Double(p1.getX())); - theCoords.addElement(new Double(p1.getY())); - theCoords.addElement(new Double(p2.getX())); - theCoords.addElement(new Double(p2.getY())); + ArrayList theCoords = new ArrayList(); + theCoords.add(new Double(p1.getX())); + theCoords.add(new Double(p1.getY())); + theCoords.add(new Double(p2.getX())); + theCoords.add(new Double(p2.getY())); - Vector theExtend = new Vector(); - theExtend.addElement(new Boolean(true)); - theExtend.addElement(new Boolean(true)); + ArrayList theExtend = new ArrayList(); + theExtend.add(new Boolean(true)); + theExtend.add(new Boolean(true)); - Vector theDomain = new Vector(); - theDomain.addElement(new Double(0)); - theDomain.addElement(new Double(1)); + ArrayList theDomain = new ArrayList(); + theDomain.add(new Double(0)); + theDomain.add(new Double(1)); - Vector theEncode = new Vector(); - theEncode.addElement(new Double(0)); - theEncode.addElement(new Double(1)); - theEncode.addElement(new Double(0)); - theEncode.addElement(new Double(1)); + ArrayList theEncode = new ArrayList(); + theEncode.add(new Double(0)); + theEncode.add(new Double(1)); + theEncode.add(new Double(0)); + theEncode.add(new Double(1)); - Vector theBounds = new Vector(); - theBounds.addElement(new Double(0)); - theBounds.addElement(new Double(1)); + ArrayList theBounds = new ArrayList(); + theBounds.add(new Double(0)); + theBounds.add(new Double(1)); - Vector theFunctions = new Vector(); + ArrayList theFunctions = new ArrayList(); - Vector someColors = new Vector(); + ArrayList someColors = new ArrayList(); PDFColor color1 = new PDFColor(c1.getRed(), c1.getGreen(), c1.getBlue()); - someColors.addElement(color1); + someColors.add(color1); PDFColor color2 = new PDFColor(c2.getRed(), c2.getGreen(), c2.getBlue()); - someColors.addElement(color2); + someColors.add(color2); PDFFunction myfunc = this.pdfDoc.makeFunction(2, theDomain, null, color1.getVector(), color2.getVector(), 1.0); |