]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
More sensible variable naming
authorVincent Hennebert <vhennebert@apache.org>
Fri, 11 Jul 2014 17:38:47 +0000 (17:38 +0000)
committerVincent Hennebert <vhennebert@apache.org>
Fri, 11 Jul 2014 17:38:47 +0000 (17:38 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/FOP-2393_gradient-rendering@1609751 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/pdf/PDFFunction.java
src/java/org/apache/fop/render/shading/Function.java
src/java/org/apache/fop/render/shading/GradientFactory.java
src/java/org/apache/fop/render/shading/PDFGradientFactory.java
src/java/org/apache/fop/render/shading/PSGradientFactory.java

index b638871862dedbc06f3f00d4fabf70d3422797c9..39942fc21d98b88162e2c69c22577665b8185e97 100644 (file)
@@ -50,32 +50,30 @@ public class PDFFunction extends PDFObject {
      * Use null for an optional object parameter if you choose not to use it.
      * For optional int parameters, pass the default.
      *
-     * @param theDomain List objects of Double objects.
+     * @param domain List objects of Double objects.
      * This is the domain of the function.
      * See page 264 of the PDF 1.3 Spec.
-     * @param theRange List of Doubles that is the Range of the function.
+     * @param range List of Doubles that is the Range of the function.
      * See page 264 of the PDF 1.3 Spec.
-     * @param theCZero This is a vector of Double objects which defines the function result
+     * @param cZero This is a vector of Double objects which defines the function result
      * when x=0.
      *
      * This attribute is optional.
      * It's described on page 268 of the PDF 1.3 spec.
-     * @param theCOne This is a vector of Double objects which defines the function result
+     * @param cOne This is a vector of Double objects which defines the function result
      * when x=1.
      *
      * This attribute is optional.
      * It's described on page 268 of the PDF 1.3 spec.
-     * @param theInterpolationExponentN This is the inerpolation exponent.
+     * @param interpolationExponentN This is the inerpolation exponent.
      *
      * This attribute is required.
      * PDF Spec page 268
-     * @param theFunctionType The type of the function, which should be 2.
+     * @param functionType The type of the function, which should be 2.
      */
-    public PDFFunction(int theFunctionType, List<Double> theDomain,
-                       List<Double> theRange, float[] theCZero, float[] theCOne,
-                       double theInterpolationExponentN) {
-        this(new Function(theFunctionType, theDomain, theRange,
-                theCZero, theCOne, theInterpolationExponentN));
+    public PDFFunction(int functionType, List<Double> domain, List<Double> range, float[] cZero, float[] cOne,
+                       double interpolationExponentN) {
+        this(new Function(functionType, domain, range, cZero, cOne, interpolationExponentN));
 
     }
 
index 75a041d72ae2a1cc0ff189d03d00c0a64010432a..cc9b2d0f7eb1b9ebc4b1b9294a4f6175771a0412 100644 (file)
@@ -141,13 +141,13 @@ public class Function {
      *
      * Use null for an optional object parameter if you choose not to use it.
      * For optional int parameters, pass the default.
-     * @param theFunctionType The type of the function, which should be 2.
-     * @param theDomain List objects of Double objects.
+     * @param functionType The type of the function, which should be 2.
+     * @param domain List objects of Double objects.
      * This is the domain of the function.
      * See page 264 of the PDF 1.3 Spec.
-     * @param theRange List of Doubles that is the Range of the function.
+     * @param range List of Doubles that is the Range of the function.
      * See page 264 of the PDF 1.3 Spec.
-     * @param theCZero This is a vector of Double objects which defines the function result
+     * @param cZero This is a vector of Double objects which defines the function result
      * when x=0.
      *
      * This attribute is optional.
@@ -157,21 +157,21 @@ public class Function {
      *
      * This attribute is optional.
      * It's described on page 268 of the PDF 1.3 spec.
-     * @param theInterpolationExponentN This is the inerpolation exponent.
+     * @param interpolationExponentN This is the inerpolation exponent.
      *
      * This attribute is required.
      * PDF Spec page 268
      */
-    public Function(int theFunctionType, List<Double> theDomain, List<Double> theRange,
-                       float[] cZero, float[] cOne, double theInterpolationExponentN) {
+    public Function(int functionType, List<Double> domain, List<Double> range,
+                       float[] cZero, float[] cOne, double interpolationExponentN) {
         this.functionType = 2;    // dang well better be 2;
 
         this.cZero = cZero;
         this.cOne = cOne;
-        this.interpolationExponentN = theInterpolationExponentN;
+        this.interpolationExponentN = interpolationExponentN;
 
-        this.domain = theDomain;
-        this.range = theRange;
+        this.domain = domain;
+        this.range = range;
 
     }
 
@@ -180,19 +180,19 @@ public class Function {
      *
      * Use null for an optional object parameter if you choose not to use it.
      * For optional int parameters, pass the default.
-     * @param theFunctionType This is the function type. It should be 3,
+     * @param functionType This is the function type. It should be 3,
      * for a stitching function.
-     * @param theDomain List objects of Double objects.
+     * @param domain List objects of Double objects.
      * This is the domain of the function.
      * See page 264 of the PDF 1.3 Spec.
-     * @param theRange List objects of Double objects.
+     * @param range List objects of Double objects.
      * This is the Range of the function.
      * See page 264 of the PDF 1.3 Spec.
-     * @param theFunctions A List of the PDFFunction objects that the stitching function stitches.
+     * @param functions A List of the PDFFunction objects that the stitching function stitches.
      *
      * This attributed is required.
      * It is described on page 269 of the PDF spec.
-     * @param theBounds This is a vector of Doubles representing the numbers that,
+     * @param bounds This is a vector of Doubles representing the numbers that,
      * in conjunction with Domain define the intervals to which each function from
      * the 'functions' object applies. It must be in order of increasing magnitude,
      * and each must be within Domain.
@@ -201,7 +201,7 @@ public class Function {
      *
      * This attributed is required.
      * It's described on page 269 of the PDF 1.3 spec.
-     * @param theEncode List objects of Double objects.
+     * @param encode List objects of Double objects.
      * This is the linear mapping of input values intop the domain
      * of the function's sample table. Default is hard to represent in
      * ascii, but basically [0 (Size0 1) 0 (Size1 1)...].
@@ -209,16 +209,16 @@ public class Function {
      *
      * See page 270 in the PDF 1.3 spec.
      */
-    public Function(int theFunctionType, List<Double> theDomain, List<Double> theRange,
-                       List<Function> theFunctions, List<Double> theBounds,
-                       List<Double> theEncode) {
+    public Function(int functionType, List<Double> domain, List<Double> range,
+                       List<Function> functions, List<Double> bounds,
+                       List<Double> encode) {
         this.functionType = 3;    // dang well better be 3;
 
-        this.functions = theFunctions;
-        this.bounds = theBounds;
-        this.encode = theEncode;
-        this.domain = theDomain;
-        this.range = theRange;
+        this.functions = functions;
+        this.bounds = bounds;
+        this.encode = encode;
+        this.domain = domain;
+        this.range = range;
 
     }
 
index 5cc33c62d72aa087c905c4807895303695bec77f..666bc0a7704347b0ac8bd3da2d7883ffcc145d72 100644 (file)
@@ -149,11 +149,11 @@ public abstract class GradientFactory<P extends Pattern> {
         return gradientColors;
     }
 
-    public abstract Shading makeShading(int theShadingType,
-            PDFDeviceColorSpace theColorSpace, List<Double> theBackground, List<Double> theBBox,
-            boolean theAntiAlias, List<Double> theCoords, List<Double> theDomain,
-            Function theFunction, List<Integer> theExtend);
+    public abstract Shading makeShading(int shadingType,
+            PDFDeviceColorSpace colorSpace, List<Double> background, List<Double> bbox,
+            boolean antiAlias, List<Double> coords, List<Double> domain,
+            Function function, List<Integer> extend);
 
-    public abstract P makePattern(int thePatternType, Shading theShading, List theXUID,
-            StringBuffer theExtGState, List<Double> theMatrix);
+    public abstract P makePattern(int patternType, Shading shading, List xuid,
+            StringBuffer extGState, List<Double> matrix);
 }
index 86c4e7e797c368ee7da5ffcb33e0b336a87b8002..4cab73a80067d5dd28bde9b6e0367f594676e0e5 100644 (file)
@@ -35,26 +35,25 @@ public class PDFGradientFactory extends GradientFactory<PDFPattern> {
     }
 
     @Override
-    public Shading makeShading(int theShadingType,
-            PDFDeviceColorSpace theColorSpace, List<Double> theBackground, List<Double> theBBox,
-            boolean theAntiAlias, List<Double> theCoords, List<Double> theDomain,
-            Function theFunction, List<Integer> theExtend) {
-        List<PDFFunction> pdfFunctions = new ArrayList<PDFFunction>(theFunction.getFunctions().size());
-        for (Function f : theFunction.getFunctions()) {
+    public Shading makeShading(int shadingType,
+            PDFDeviceColorSpace colorSpace, List<Double> background, List<Double> bbox,
+            boolean antiAlias, List<Double> coords, List<Double> domain,
+            Function function, List<Integer> extend) {
+        List<PDFFunction> pdfFunctions = new ArrayList<PDFFunction>(function.getFunctions().size());
+        for (Function f : function.getFunctions()) {
             pdfFunctions.add(graphics2D.registerFunction(new PDFFunction(f)));
         }
-        PDFFunction pdfFunction = graphics2D.registerFunction(new PDFFunction(theFunction, pdfFunctions));
-        PDFShading newShading = new PDFShading(theShadingType, theColorSpace, theBackground,
-                    theBBox, theAntiAlias, theCoords, theDomain, pdfFunction, theExtend);
+        PDFFunction pdfFunction = graphics2D.registerFunction(new PDFFunction(function, pdfFunctions));
+        PDFShading newShading = new PDFShading(shadingType, colorSpace, background,
+                    bbox, antiAlias, coords, domain, pdfFunction, extend);
         newShading = graphics2D.registerShading(newShading);
         return newShading;
     }
 
     @Override
-    public PDFPattern makePattern(int thePatternType, Shading theShading, List theXUID,
-            StringBuffer theExtGState, List<Double> theMatrix) {
-        PDFPattern newPattern = new PDFPattern(thePatternType, theShading, theXUID, theExtGState,
-                    theMatrix);
+    public PDFPattern makePattern(int patternType, Shading shading, List xuid,
+            StringBuffer extGState, List<Double> matrix) {
+        PDFPattern newPattern = new PDFPattern(patternType, shading, xuid, extGState, matrix);
         newPattern = graphics2D.registerPattern(newPattern);
         return newPattern;
     }
index 03011fa35e0df59d0d020dfe756e30e1246d2ba0..7bd7ba245de18a057f38c88900d8ae9cf457922b 100644 (file)
@@ -26,18 +26,18 @@ import org.apache.fop.render.ps.svg.PSShading;
 public class PSGradientFactory extends GradientFactory<PSPattern> {
 
     @Override
-    public Shading makeShading(int theShadingType,
-            PDFDeviceColorSpace theColorSpace, List<Double> theBackground, List<Double> theBBox,
-            boolean theAntiAlias, List<Double> theCoords, List<Double> theDomain,
-            Function theFunction, List<Integer> theExtend) {
-        Shading newShading = new PSShading(theShadingType, theColorSpace, theBackground, theBBox,
-                    theAntiAlias, theCoords, theDomain, theFunction, theExtend);
+    public Shading makeShading(int shadingType,
+            PDFDeviceColorSpace colorSpace, List<Double> background, List<Double> bbox,
+            boolean antiAlias, List<Double> coords, List<Double> domain,
+            Function function, List<Integer> extend) {
+        Shading newShading = new PSShading(shadingType, colorSpace, background, bbox,
+                    antiAlias, coords, domain, function, extend);
         return newShading;
     }
 
     @Override
-    public PSPattern makePattern(int thePatternType, Shading theShading, List theXUID,
-            StringBuffer theExtGState, List<Double> theMatrix) {
-        return new PSPattern(thePatternType, theShading, theXUID, theExtGState, theMatrix);
+    public PSPattern makePattern(int patternType, Shading shading, List xuid,
+            StringBuffer extGState, List<Double> matrix) {
+        return new PSPattern(patternType, shading, xuid, extGState, matrix);
     }
 }