< prev index next >

src/java.desktop/share/classes/sun/java2d/pipe/RenderingEngine.java

Print this page

        

@@ -178,11 +178,11 @@
     public abstract Shape createStrokedShape(Shape src,
                                              float width,
                                              int caps,
                                              int join,
                                              float miterlimit,
-                                             float dashes[],
+                                             float[] dashes,
                                              float dashphase);
 
     /**
      * Sends the geometry for a widened path as specified by the parameters
      * to the specified consumer.

@@ -269,11 +269,11 @@
                                                        AffineTransform at,
                                                        Region clip,
                                                        BasicStroke bs,
                                                        boolean thin,
                                                        boolean normalize,
-                                                       int bbox[]);
+                                                       int[] bbox);
 
     /**
      * Construct an antialiased tile generator for the given parallelogram
      * store the bounds of the tile iteration in the bbox parameter.
      * The parallelogram is specified as a starting point and 2 delta

@@ -335,11 +335,11 @@
     public abstract AATileGenerator getAATileGenerator(double x, double y,
                                                        double dx1, double dy1,
                                                        double dx2, double dy2,
                                                        double lw1, double lw2,
                                                        Region clip,
-                                                       int bbox[]);
+                                                       int[] bbox);
 
     /**
      * Returns the minimum pen width that the antialiasing rasterizer
      * can represent without dropouts occurring.
      * @since 1.7

@@ -351,11 +351,11 @@
      * given {@link PathIterator}.
      * This method deals with the details of running the iterator and
      * feeding the consumer a segment at a time.
      */
     public static void feedConsumer(PathIterator pi, PathConsumer2D consumer) {
-        float coords[] = new float[6];
+        float[] coords = new float[6];
         while (!pi.isDone()) {
             switch (pi.currentSegment(coords)) {
             case PathIterator.SEG_MOVETO:
                 consumer.moveTo(coords[0], coords[1]);
                 break;

@@ -391,11 +391,11 @@
         public Shape createStrokedShape(Shape src,
                                         float width,
                                         int caps,
                                         int join,
                                         float miterlimit,
-                                        float dashes[],
+                                        float[] dashes,
                                         float dashphase)
         {
             System.out.println(name+".createStrokedShape("+
                                src.getClass().getName()+", "+
                                "width = "+width+", "+

@@ -437,11 +437,11 @@
                                                   AffineTransform at,
                                                   Region clip,
                                                   BasicStroke bs,
                                                   boolean thin,
                                                   boolean normalize,
-                                                  int bbox[])
+                                                  int[] bbox)
         {
             System.out.println(name+".getAATileGenerator("+
                                s.getClass().getName()+", "+
                                at+", "+
                                clip+", "+

@@ -455,11 +455,11 @@
         public AATileGenerator getAATileGenerator(double x, double y,
                                                   double dx1, double dy1,
                                                   double dx2, double dy2,
                                                   double lw1, double lw2,
                                                   Region clip,
-                                                  int bbox[])
+                                                  int[] bbox)
         {
             System.out.println(name+".getAATileGenerator("+
                                x+", "+y+", "+
                                dx1+", "+dy1+", "+
                                dx2+", "+dy2+", "+
< prev index next >