]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Fixed indentation
authorVincent Hennebert <vhennebert@apache.org>
Fri, 27 Aug 2010 13:23:11 +0000 (13:23 +0000)
committerVincent Hennebert <vhennebert@apache.org>
Fri, 27 Aug 2010 13:23:11 +0000 (13:23 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@990144 13f79535-47bb-0310-9956-ffa450edef68

24 files changed:
src/java/org/apache/fop/layoutmgr/BalancingColumnBreakingAlgorithm.java
src/java/org/apache/fop/layoutmgr/BreakingAlgorithm.java
src/java/org/apache/fop/layoutmgr/inline/LineLayoutManager.java
src/java/org/apache/fop/layoutmgr/inline/TextLayoutManager.java
src/java/org/apache/fop/layoutmgr/table/CellPart.java
src/java/org/apache/fop/layoutmgr/table/TableCellLayoutManager.java
src/java/org/apache/fop/pdf/PDFCIDFont.java
src/java/org/apache/fop/pdf/PDFFactory.java
src/java/org/apache/fop/pdf/PDFFontDescriptor.java
src/java/org/apache/fop/pdf/PDFFunction.java
src/java/org/apache/fop/pdf/PDFPattern.java
src/java/org/apache/fop/pdf/PDFShading.java
src/java/org/apache/fop/render/AbstractPathOrientedRenderer.java
src/java/org/apache/fop/render/afp/AFPPainter.java
src/java/org/apache/fop/render/intermediate/BorderPainter.java
src/java/org/apache/fop/render/intermediate/IFRenderer.java
src/java/org/apache/fop/render/java2d/Java2DBorderPainter.java
src/java/org/apache/fop/render/java2d/Java2DRenderer.java
src/java/org/apache/fop/render/pcl/PCLPainter.java
src/java/org/apache/fop/render/pdf/PDFBorderPainter.java
src/java/org/apache/fop/render/ps/PSBorderPainter.java
src/java/org/apache/fop/render/ps/PSPainter.java
src/java/org/apache/fop/render/txt/TXTRenderer.java
src/java/org/apache/fop/util/ColorExt.java

index b8bbc0c6c7fa6dc7b9dd802fc8ce556e4000c058..0eae6fa9ce2bc651c7ecefa56647c2b390ebd6cd 100644 (file)
@@ -55,8 +55,8 @@ public class BalancingColumnBreakingAlgorithm extends PageBreakingAlgorithm {
      * @param columnCount number of columns
      * @see PageBreakingAlgorithm
      */
-    public BalancingColumnBreakingAlgorithm                     // CSOK: ParameterNumber
-        (LayoutManager topLevelLM,
+    public BalancingColumnBreakingAlgorithm(                     // CSOK: ParameterNumber
+            LayoutManager topLevelLM,
             PageProvider pageProvider,
             PageBreakingLayoutListener layoutListener,
             int alignment, int alignmentLast,
index f8d78d4778f114ba0e2a4995815d91c19d4fd440..15f8ffa8dba23cef4b95f248d4083919767a8e3e 100644 (file)
@@ -285,11 +285,11 @@ public abstract class BreakingAlgorithm {
          * @param totalDemerits a real number
          * @param previous a node
          */
-        public KnuthNode                                        // CSOK: ParameterNumber
-            (int position, int line, int fitness,
-                         int totalWidth, int totalStretch, int totalShrink,
-                         double adjustRatio, int availableShrink, int availableStretch,
-                         int difference, double totalDemerits, KnuthNode previous) {
+        public KnuthNode(                                        // CSOK: ParameterNumber
+                int position, int line, int fitness,
+                int totalWidth, int totalStretch, int totalShrink,
+                double adjustRatio, int availableShrink, int availableStretch,
+                int difference, double totalDemerits, KnuthNode previous) {
             this.position = position;
             this.line = line;
             this.fitness = fitness;
@@ -671,11 +671,11 @@ public abstract class BreakingAlgorithm {
      * @param previous active node for the preceding breakpoint
      * @return a new node
      */
-    protected KnuthNode createNode                              // CSOK: ParameterNumber
-        (int position, int line, int fitness,
-                                   int totalWidth, int totalStretch, int totalShrink,
-                                   double adjustRatio, int availableShrink, int availableStretch,
-                                   int difference, double totalDemerits, KnuthNode previous) {
+    protected KnuthNode createNode(                              // CSOK: ParameterNumber
+            int position, int line, int fitness,
+            int totalWidth, int totalStretch, int totalShrink,
+            double adjustRatio, int availableShrink, int availableStretch,
+            int difference, double totalDemerits, KnuthNode previous) {
         return new KnuthNode(position, line, fitness,
                              totalWidth, totalStretch, totalShrink,
                              adjustRatio, availableShrink, availableStretch,
index 7e87de24163f057198c2c7735ee5f8ab21117cef..8332c94622fe695989d9678f2d3265d87752de89 100644 (file)
@@ -132,10 +132,10 @@ public class LineLayoutManager extends InlineStackingLayoutManager
         private int spaceAfter;
         private int baseline;
 
-        LineBreakPosition                                       // CSOK: ParameterNumber
-            (LayoutManager lm, int index, int startIndex, int breakIndex,
-             int shrink, int stretch, int diff, double ipdA, double adjust, int ind,
-             int lh, int lw, int sb, int sa, int bl) {
+        LineBreakPosition(                                       // CSOK: ParameterNumber
+                LayoutManager lm, int index, int startIndex, int breakIndex,
+                int shrink, int stretch, int diff, double ipdA, double adjust, int ind,
+                int lh, int lw, int sb, int sa, int bl) {
             super(lm, breakIndex);
             availableShrink = shrink;
             availableStretch = stretch;
@@ -331,9 +331,9 @@ public class LineLayoutManager extends InlineStackingLayoutManager
         private int follow;
         private static final double MAX_DEMERITS = 10e6;
 
-        public LineBreakingAlgorithm                            // CSOK: ParameterNumber
-            (int pageAlign, int textAlign, int textAlignLast, int indent, int fillerWidth,
-             int lh, int ld, int fl, boolean first, int maxFlagCount, LineLayoutManager llm) {
+        public LineBreakingAlgorithm(                            // CSOK: ParameterNumber
+                int pageAlign, int textAlign, int textAlignLast, int indent, int fillerWidth,
+                int lh, int ld, int fl, boolean first, int maxFlagCount, LineLayoutManager llm) {
             super(textAlign, textAlignLast, first, false, maxFlagCount);
             pageAlignment = pageAlign;
             textIndent = indent;
@@ -410,9 +410,9 @@ public class LineLayoutManager extends InlineStackingLayoutManager
             activePossibility = -1;
         }
 
-        private LineBreakPosition makeLineBreakPosition         // CSOK: ParameterNumber
-            (KnuthSequence par, int firstElementIndex, int lastElementIndex, int availableShrink,
-             int availableStretch, int difference, double ratio, int indent) {
+        private LineBreakPosition makeLineBreakPosition(         // CSOK: ParameterNumber
+                KnuthSequence par, int firstElementIndex, int lastElementIndex, int availableShrink,
+                int availableStretch, int difference, double ratio, int indent) {
             // line height calculation - spaceBefore may differ from spaceAfter
             // by 1mpt due to rounding
             int spaceBefore = (lineHeight - lead - follow) / 2;
index 4c45fbe660ff33105a63988542f2f23efc23a5a5..cbe2e2639c5a0d9b097055b2001dea9c7cb2c7d0 100644 (file)
@@ -81,10 +81,10 @@ public class TextLayoutManager extends LeafNodeLayoutManager {
         private boolean breakOppAfter;
         private final Font font;
 
-        AreaInfo                                                // CSOK: ParameterNumber
-            (int startIndex, int breakIndex, int wordSpaceCount, int letterSpaceCount,
-             MinOptMax areaIPD, boolean isHyphenated, boolean isSpace, boolean breakOppAfter,
-             Font font) {
+        AreaInfo(                                                // CSOK: ParameterNumber
+                int startIndex, int breakIndex, int wordSpaceCount, int letterSpaceCount,
+                MinOptMax areaIPD, boolean isHyphenated, boolean isSpace, boolean breakOppAfter,
+                Font font) {
             assert startIndex <= breakIndex;
             this.startIndex = startIndex;
             this.breakIndex = breakIndex;
index 8af3a3d43076ada81333595fe094128e03186e92..cde19e67bd0d4d080ed2bb5b74ffe1f753142669 100644 (file)
@@ -61,8 +61,8 @@ class CellPart {
      * @param bpAfterLast width of (possibly optional) border- and padding-after if this
      * part will be the last one on the page
      */
-    protected CellPart                                          // CSOK: ParameterNumber
-        (PrimaryGridUnit pgu, int start, int end, boolean last,
+    protected CellPart(                                          // CSOK: ParameterNumber
+            PrimaryGridUnit pgu, int start, int end, boolean last,
             int condBeforeContentLength, int length, int condAfterContentLength,
             int bpBeforeNormal, int bpBeforeFirst,
             int bpAfterNormal, int bpAfterLast) {
index 5fb733a516ba836eb8bdbe3cc3b0aee056a35bdd..ded18384d456447978900d9066adc7c90af965f9 100644 (file)
@@ -277,10 +277,10 @@ public class TableCellLayoutManager extends BlockStackingLayoutManager
      * this row is placed on a previous page). Used to calculate the placement of the
      * row's background image if any
      */
-    public void addAreas                                        // CSOK: ParameterNumber
-        (PositionIterator parentIter, LayoutContext layoutContext, int[] spannedGridRowHeights,
-         int startRow, int endRow, int borderBeforeWhich, int borderAfterWhich, boolean firstOnPage,
-         boolean lastOnPage, RowPainter painter, int firstRowHeight) {
+    public void addAreas(                                        // CSOK: ParameterNumber
+            PositionIterator parentIter, LayoutContext layoutContext, int[] spannedGridRowHeights,
+            int startRow, int endRow, int borderBeforeWhich, int borderAfterWhich,
+            boolean firstOnPage, boolean lastOnPage, RowPainter painter, int firstRowHeight) {
         getParentArea(null);
 
         addId();
index 9a91dd992ba731a26f383682e7335ce37a7daa55..459fe25843169b3ecfa2408691c2c9032120b0de 100644 (file)
@@ -56,10 +56,10 @@ public class PDFCIDFont extends PDFObject {
      * @param supplement Supplement number
      * @param descriptor CID font descriptor
      */
-    public PDFCIDFont                                           // CSOK: ParameterNumber
-        (String basefont, CIDFontType cidtype, int dw,
-         int[] w, String registry, String ordering,
-         int supplement, PDFCIDFontDescriptor descriptor) {
+    public PDFCIDFont(                                           // CSOK: ParameterNumber
+            String basefont, CIDFontType cidtype, int dw,
+            int[] w, String registry, String ordering,
+            int supplement, PDFCIDFontDescriptor descriptor) {
 
         this(basefont, cidtype, dw,
                 new PDFWArray(w),
index 8ebd15127f27f9598852126b15a5b377b20e1627..752d14207f0ea48eb0e26daf811dc3d9fff5fb79 100644 (file)
@@ -292,13 +292,13 @@ public class PDFFactory {
      * It should be 0 as this is the constructor for sampled functions.
      * @return the PDF function that was created
      */
-    public PDFFunction makeFunction                             // CSOK: ParameterNumber
-        (int theFunctionType, List theDomain,
-         List theRange, List theSize,
-         int theBitsPerSample, int theOrder,
-         List theEncode, List theDecode,
-         StringBuffer theFunctionDataStream,
-         List theFilter) {
+    public PDFFunction makeFunction(                             // CSOK: ParameterNumber
+            int theFunctionType, List theDomain,
+            List theRange, List theSize,
+            int theBitsPerSample, int theOrder,
+            List theEncode, List theDecode,
+            StringBuffer theFunctionDataStream,
+            List theFilter) {
         // Type 0 function
         PDFFunction function = new PDFFunction(theFunctionType, theDomain,
                                                theRange, theSize,
@@ -466,13 +466,13 @@ public class PDFFactory {
      * @param theFunction The PDF Function that maps an (x,y) location to a color
      * @return the PDF shading that was created
      */
-    public PDFShading makeShading                               // CSOK: ParameterNumber
-        (PDFResourceContext res, int theShadingType,
-         PDFDeviceColorSpace theColorSpace,
-         List theBackground, List theBBox,
-         boolean theAntiAlias, List theDomain,
-         List theMatrix,
-         PDFFunction theFunction) {
+    public PDFShading makeShading(                               // CSOK: ParameterNumber
+            PDFResourceContext res, int theShadingType,
+            PDFDeviceColorSpace theColorSpace,
+            List theBackground, List theBBox,
+            boolean theAntiAlias, List theDomain,
+            List theMatrix,
+            PDFFunction theFunction) {
         // make Shading of Type 1
         PDFShading shading = new PDFShading(theShadingType,
                                             theColorSpace, theBackground,
@@ -519,13 +519,13 @@ public class PDFFactory {
      * The default is [false, false]
      * @return the PDF shading that was created
      */
-    public PDFShading makeShading                               // CSOK: ParameterNumber
-        (PDFResourceContext res, int theShadingType,
-         PDFDeviceColorSpace theColorSpace,
-         List theBackground, List theBBox,
-         boolean theAntiAlias, List theCoords,
-         List theDomain, PDFFunction theFunction,
-         List theExtend) {
+    public PDFShading makeShading(                               // CSOK: ParameterNumber
+            PDFResourceContext res, int theShadingType,
+            PDFDeviceColorSpace theColorSpace,
+            List theBackground, List theBBox,
+            boolean theAntiAlias, List theCoords,
+            List theDomain, PDFFunction theFunction,
+            List theExtend) {
         // make Shading of Type 2 or 3
         PDFShading shading = new PDFShading(theShadingType,
                                             theColorSpace, theBackground,
@@ -573,15 +573,15 @@ public class PDFFactory {
      * @param theFunction the PDFFunction
      * @return the PDF shading that was created
      */
-    public PDFShading makeShading                               // CSOK: ParameterNumber
-        (PDFResourceContext res, int theShadingType,
-         PDFDeviceColorSpace theColorSpace,
-         List theBackground, List theBBox,
-         boolean theAntiAlias,
-         int theBitsPerCoordinate,
-         int theBitsPerComponent,
-         int theBitsPerFlag, List theDecode,
-         PDFFunction theFunction) {
+    public PDFShading makeShading(                               // CSOK: ParameterNumber
+            PDFResourceContext res, int theShadingType,
+            PDFDeviceColorSpace theColorSpace,
+            List theBackground, List theBBox,
+            boolean theAntiAlias,
+            int theBitsPerCoordinate,
+            int theBitsPerComponent,
+            int theBitsPerFlag, List theDecode,
+            PDFFunction theFunction) {
         // make Shading of type 4,6 or 7
         PDFShading shading = new PDFShading(theShadingType,
                                             theColorSpace, theBackground,
@@ -629,15 +629,15 @@ public class PDFFactory {
      * @param theFunction The PDFFunction that's mapped on to this shape
      * @return the PDF shading that was created
      */
-    public PDFShading makeShading                               // CSOK: ParameterNumber
-        (PDFResourceContext res, int theShadingType,
-         PDFDeviceColorSpace theColorSpace,
-         List theBackground, List theBBox,
-         boolean theAntiAlias,
-         int theBitsPerCoordinate,
-         int theBitsPerComponent, List theDecode,
-         int theVerticesPerRow,
-         PDFFunction theFunction) {
+    public PDFShading makeShading(                               // CSOK: ParameterNumber
+            PDFResourceContext res, int theShadingType,
+            PDFDeviceColorSpace theColorSpace,
+            List theBackground, List theBBox,
+            boolean theAntiAlias,
+            int theBitsPerCoordinate,
+            int theBitsPerComponent, List theDecode,
+            int theVerticesPerRow,
+            PDFFunction theFunction) {
         // make shading of Type 5
         PDFShading shading = new PDFShading(theShadingType,
                                             theColorSpace, theBackground,
@@ -680,12 +680,12 @@ public class PDFFactory {
      * @param thePatternDataStream The stream of pattern data to be tiled.
      * @return the PDF pattern that was created
      */
-    public PDFPattern makePattern                               // CSOK: ParameterNumber
-        (PDFResourceContext res, int thePatternType,    // 1
-         PDFResources theResources, int thePaintType, int theTilingType,
-         List theBBox, double theXStep,
-         double theYStep, List theMatrix,
-         List theXUID, StringBuffer thePatternDataStream) {
+    public PDFPattern makePattern(                               // CSOK: ParameterNumber
+            PDFResourceContext res, int thePatternType,    // 1
+            PDFResources theResources, int thePaintType, int theTilingType,
+            List theBBox, double theXStep,
+            double theYStep, List theMatrix,
+            List theXUID, StringBuffer thePatternDataStream) {
         // PDFResources theResources
         PDFPattern pattern = new PDFPattern(theResources, 1,
                                             thePaintType, theTilingType,
index 4350ed7dd183b8d451bad1e40ff1ece0bceaddc7..9d255545fb269e60bb5b0c34fb08ba518352e20c 100644 (file)
@@ -40,11 +40,11 @@ public class PDFFontDescriptor extends PDFDictionary {
      * @param italicAngle the angle of the vertical dominant strokes
      * @param stemV the width of the dominant vertical stems of glyphs
      */
-    public PDFFontDescriptor                                    // CSOK: ParameterNumber
-        (String basefont, int ascent,
-         int descent, int capHeight, int flags,
-         PDFRectangle fontBBox, int italicAngle,
-         int stemV) {
+    public PDFFontDescriptor(                                    // CSOK: ParameterNumber
+            String basefont, int ascent,
+            int descent, int capHeight, int flags,
+            PDFRectangle fontBBox, int italicAngle,
+            int stemV) {
         super();
 
         put("Type", new PDFName("FontDescriptor"));
index 5b5d41490c395ed45d87c066000b16490db3b351..9e93ebee8c9e70bd70e37c2daf092b9f1dde112c 100644 (file)
@@ -211,11 +211,11 @@ public class PDFFunction extends PDFObject {
      * @param theFunctionType This is the type of function (0,2,3, or 4).
      * It should be 0 as this is the constructor for sampled functions.
      */
-    public PDFFunction                                          // CSOK: ParameterNumber
-        (int theFunctionType, List theDomain,
-         List theRange, List theSize, int theBitsPerSample,
-         int theOrder, List theEncode, List theDecode,
-         StringBuffer theFunctionDataStream, List theFilter) {
+    public PDFFunction(                                          // CSOK: ParameterNumber
+            int theFunctionType, List theDomain,
+            List theRange, List theSize, int theBitsPerSample,
+            int theOrder, List theEncode, List theDecode,
+            StringBuffer theFunctionDataStream, List theFilter) {
         super();
 
         this.functionType = 0;      // dang well better be 0;
index ebde4ac6a296402b44cee7989049248462f04335..74f56377ea07493b25c473fed4c7ee346cbfe09d 100644 (file)
@@ -117,12 +117,12 @@ public class PDFPattern extends PDFPathPaint {
      * @param theXUID Optional vector of Integers that uniquely identify the pattern
      * @param thePatternDataStream The stream of pattern data to be tiled.
      */
-    public PDFPattern                                           // CSOK: ParameterNumber
-        (PDFResources theResources, int thePatternType,    // 1
-         int thePaintType, int theTilingType, List theBBox,
-         double theXStep, double theYStep,
-         List theMatrix, List theXUID,
-         StringBuffer thePatternDataStream) {
+    public PDFPattern(                                           // CSOK: ParameterNumber
+            PDFResources theResources, int thePatternType,    // 1
+            int thePaintType, int theTilingType, List theBBox,
+            double theXStep, double theYStep,
+            List theMatrix, List theXUID,
+            StringBuffer thePatternDataStream) {
         super();
         this.resources = theResources;
         // This next parameter is implicit to all constructors, and is
index 10d7bf628033672873e4931a6b0902d5e0f498da..2f955b8504b18249e3ef7e781532871291195956 100644 (file)
@@ -164,11 +164,11 @@ public class PDFShading extends PDFObject {
      * It's optional, the default is the identity matrix
      * @param theFunction The PDF Function that maps an (x,y) location to a color
      */
-    public PDFShading                                           // CSOK: ParameterNumber
-        (int theShadingType, PDFDeviceColorSpace theColorSpace,
-         List theBackground, List theBBox,
-         boolean theAntiAlias, List theDomain,
-         List theMatrix, PDFFunction theFunction) {
+    public PDFShading(                                           // CSOK: ParameterNumber
+            int theShadingType, PDFDeviceColorSpace theColorSpace,
+            List theBackground, List theBBox,
+            boolean theAntiAlias, List theDomain,
+            List theMatrix, PDFFunction theFunction) {
         super();
         this.shadingType = theShadingType;    // 1
         this.colorSpace = theColorSpace;
@@ -203,12 +203,12 @@ public class PDFShading extends PDFObject {
      *                  and end colors past the start and end points
      * The default is [false, false]
      */
-    public PDFShading                                           // CSOK: ParameterNumber
-        (int theShadingType, PDFDeviceColorSpace theColorSpace,
-         List theBackground, List theBBox,
-         boolean theAntiAlias, List theCoords,
-         List theDomain, PDFFunction theFunction,
-         List theExtend) {
+    public PDFShading(                                           // CSOK: ParameterNumber
+            int theShadingType, PDFDeviceColorSpace theColorSpace,
+            List theBackground, List theBBox,
+            boolean theAntiAlias, List theCoords,
+            List theDomain, PDFFunction theFunction,
+            List theExtend) {
         super();
         this.shadingType = theShadingType;    // 2 or 3
         this.colorSpace = theColorSpace;
@@ -244,12 +244,12 @@ public class PDFShading extends PDFObject {
      * @param theDecode List of Doubles see PDF 1.3 spec pages 303 to 312.
      * @param theFunction the PDFFunction
      */
-    public PDFShading                                           // CSOK: ParameterNumber
-        (int theShadingType, PDFDeviceColorSpace theColorSpace,
-         List theBackground, List theBBox,
-         boolean theAntiAlias, int theBitsPerCoordinate,
-         int theBitsPerComponent, int theBitsPerFlag,
-         List theDecode, PDFFunction theFunction) {
+    public PDFShading(                                           // CSOK: ParameterNumber
+            int theShadingType, PDFDeviceColorSpace theColorSpace,
+            List theBackground, List theBBox,
+            boolean theAntiAlias, int theBitsPerCoordinate,
+            int theBitsPerComponent, int theBitsPerFlag,
+            List theDecode, PDFFunction theFunction) {
         super();
 
         this.shadingType = theShadingType;    // 4,6 or 7
@@ -284,12 +284,12 @@ public class PDFShading extends PDFObject {
      * @param theVerticesPerRow number of vertices in each "row" of the lattice.
      * @param theFunction The PDFFunction that's mapped on to this shape
      */
-    public PDFShading                                           // CSOK: ParameterNumber
-        (int theShadingType, PDFDeviceColorSpace theColorSpace,
-         List theBackground, List theBBox,
-         boolean theAntiAlias, int theBitsPerCoordinate,
-         int theBitsPerComponent, List theDecode,
-         int theVerticesPerRow, PDFFunction theFunction) {
+    public PDFShading(                                           // CSOK: ParameterNumber
+            int theShadingType, PDFDeviceColorSpace theColorSpace,
+            List theBackground, List theBBox,
+            boolean theAntiAlias, int theBitsPerCoordinate,
+            int theBitsPerComponent, List theDecode,
+            int theVerticesPerRow, PDFFunction theFunction) {
         super();
         this.shadingType = theShadingType;    // 5
         this.colorSpace = theColorSpace;
index ac4936a43438c99f3a5fa0bf0341f4efe1b4fae8..cfce3a875cc52592574eb365c13b3268fca64a98 100644 (file)
@@ -172,10 +172,10 @@ public abstract class AbstractPathOrientedRenderer extends PrintRenderer {
      * @param bpsStart the border-start traits
      * @param bpsEnd the border-end traits
      */
-    protected void drawBackground                               // CSOK: ParameterNumber
-        (float startx, float starty, float width, float height, Trait.Background back,
-         BorderProps bpsBefore, BorderProps bpsAfter,
-         BorderProps bpsStart, BorderProps bpsEnd) {
+    protected void drawBackground(                               // CSOK: ParameterNumber
+            float startx, float starty, float width, float height, Trait.Background back,
+            BorderProps bpsBefore, BorderProps bpsAfter,
+            BorderProps bpsStart, BorderProps bpsEnd) {
         if (back != null) {
             endTextObject();
 
@@ -261,10 +261,10 @@ public abstract class AbstractPathOrientedRenderer extends PrintRenderer {
      * @param bpsStart the border-start traits
      * @param bpsEnd the border-end traits
      */
-    protected void drawBorders                                  // CSOK: ParameterNumber
-        (float startx, float starty, float width, float height,
-         BorderProps bpsBefore, BorderProps bpsAfter,
-         BorderProps bpsStart, BorderProps bpsEnd) {
+    protected void drawBorders(                                  // CSOK: ParameterNumber
+            float startx, float starty, float width, float height,
+            BorderProps bpsBefore, BorderProps bpsAfter,
+            BorderProps bpsStart, BorderProps bpsEnd) {
         Rectangle2D.Float borderRect = new Rectangle2D.Float(startx, starty, width, height);
         drawBorders(borderRect, bpsBefore, bpsAfter, bpsStart, bpsEnd);
     }
@@ -282,8 +282,8 @@ public abstract class AbstractPathOrientedRenderer extends PrintRenderer {
      * @param bpsStart the border specification on the start side
      * @param bpsEnd the border specification on the end side
      */
-    protected void drawBorders                                  // CSOK: MethodLength
-        (Rectangle2D.Float borderRect,
+    protected void drawBorders(                                  // CSOK: MethodLength
+            Rectangle2D.Float borderRect,
             BorderProps bpsBefore, BorderProps bpsAfter, BorderProps bpsStart, BorderProps bpsEnd) {
         //TODO generalize each of the four conditions into using a parameterized drawBorder()
         boolean[] border = new boolean[] {
@@ -858,9 +858,9 @@ public abstract class AbstractPathOrientedRenderer extends PrintRenderer {
      * @param style the border style (one of Constants.EN_DASHED etc.)
      * @param col the color for the border segment
      */
-    protected abstract void drawBorderLine                      // CSOK: ParameterNumber
-        (float x1, float y1, float x2, float y2, boolean horz,
-         boolean startOrBefore, int style, Color col);
+    protected abstract void drawBorderLine(                      // CSOK: ParameterNumber
+            float x1, float y1, float x2, float y2, boolean horz,
+            boolean startOrBefore, int style, Color col);
 
     /** {@inheritDoc} */
     public void renderForeignObject(ForeignObject fo, Rectangle2D pos) {
index 21bc4ab48bd01c080fd9437cf6f76d6f5a7e37ce..0bbfef3e815f3a4fa58e93bcf9d4d013dde63cd3 100644 (file)
@@ -281,8 +281,8 @@ public class AFPPainter extends AbstractIFPainter {
             return mpt / 1000f;
         }
 
-        protected void drawBorderLine                           // CSOK: ParameterNumber
-            (int x1, int y1, int x2, int y2, boolean horz,
+        protected void drawBorderLine(                           // CSOK: ParameterNumber
+                int x1, int y1, int x2, int y2, boolean horz,
                 boolean startOrBefore, int style, Color color) throws IOException {
             BorderPaintingInfo borderPaintInfo = new BorderPaintingInfo(
                     toPoints(x1), toPoints(y1), toPoints(x2), toPoints(y2),
@@ -317,9 +317,9 @@ public class AFPPainter extends AbstractIFPainter {
     }
 
     /** {@inheritDoc} */
-    public void drawText                                        // CSOK: MethodLength
-        (int x, int y, final int letterSpacing, final int wordSpacing, final int[] dx,
-         final String text) throws IFException {
+    public void drawText(                                        // CSOK: MethodLength
+            int x, int y, final int letterSpacing, final int wordSpacing, final int[] dx,
+            final String text) throws IFException {
         final int fontSize = this.state.getFontSize();
         getPaintingState().setFontSize(fontSize);
 
index ad37b1dc17f8f4dc45fbdb671ff7dcaa1efe7694..20402369ad3e974a1ca4fa4b97f00e6676cbe18c 100644 (file)
@@ -217,9 +217,9 @@ public abstract class BorderPainter {
      * @param color the border color
      * @throws IOException if an I/O error occurs
      */
-    protected abstract void drawBorderLine                      // CSOK: ParameterNumber
-        (int x1, int y1, int x2, int y2,
-         boolean horz, boolean startOrBefore, int style, Color color) throws IOException;
+    protected abstract void drawBorderLine(                      // CSOK: ParameterNumber
+            int x1, int y1, int x2, int y2,
+            boolean horz, boolean startOrBefore, int style, Color color) throws IOException;
 
     /**
      * Draws a line/rule.
index 23a5da3e3315c69a96c8c1e6011548c149eb60ff..bdeb1e9a1a7667e202e35d98840591de1d5406a1 100644 (file)
@@ -1238,8 +1238,8 @@ public class IFRenderer extends AbstractPathOrientedRenderer {
     }
 
     /** {@inheritDoc} */
-    protected void drawBorders                                  // CSOK: ParameterNumber
-        (float startx, float starty,
+    protected void drawBorders(                                  // CSOK: ParameterNumber
+            float startx, float starty,
             float width, float height,
             BorderProps bpsBefore, BorderProps bpsAfter,
             BorderProps bpsStart, BorderProps bpsEnd) {
@@ -1252,8 +1252,8 @@ public class IFRenderer extends AbstractPathOrientedRenderer {
     }
 
     /** {@inheritDoc} */
-    protected void drawBorderLine                               // CSOK: ParameterNumber
-        (float x1, float y1, float x2, float y2, boolean horz,
+    protected void drawBorderLine(                               // CSOK: ParameterNumber
+            float x1, float y1, float x2, float y2, boolean horz,
             boolean startOrBefore, int style, Color col) {
         //Simplified implementation that is only used by renderTextDecoration()
         //drawBorders() is overridden and uses the Painter's high-level method drawBorderRect()
index e4576373d9e8be7019885184ccb92c0a10b6b4ce..b2b29188b384fe1be59dd135a9b8c740e17d4f0f 100644 (file)
@@ -64,8 +64,8 @@ public class Java2DBorderPainter extends BorderPainter {
     }
 
     /** {@inheritDoc} */
-    protected void drawBorderLine                               // CSOK: ParameterNumber
-        (int x1, int y1, int x2, int y2, boolean horz,
+    protected void drawBorderLine(                               // CSOK: ParameterNumber
+            int x1, int y1, int x2, int y2, boolean horz,
             boolean startOrBefore, int style, Color color) {
         float w = x2 - x1;
         float h = y2 - y1;
index cbd50c954868533735a93599d3bd513e736027b7..73af5c8be8b20e9fb0888b77f8842ba661b81061 100644 (file)
@@ -536,8 +536,8 @@ public abstract class Java2DRenderer extends AbstractPathOrientedRenderer implem
     }
 
     /** {@inheritDoc} */
-    protected void drawBorderLine                               // CSOK: ParameterNumber
-        (float x1, float y1, float x2, float y2,
+    protected void drawBorderLine(                               // CSOK: ParameterNumber
+            float x1, float y1, float x2, float y2,
             boolean horz, boolean startOrBefore, int style, Color col) {
         Graphics2D g2d = state.getGraph();
         float width = x2 - x1;
index 00b25a5e397df3b56203fa095cb09061c873a21a..afae8ac27f286f8d488ffe4d9145657e5d97ed7f 100644 (file)
@@ -390,11 +390,11 @@ public class PCLPainter extends AbstractIFPainter implements PCLConstants {
 
     private static final double SAFETY_MARGIN_FACTOR = 0.05;
 
-    private Rectangle getTextBoundingBox                        // CSOK: ParameterNumber
-        (int x, int y,
-         int letterSpacing, int wordSpacing, int[] dx,
-         String text,
-         Font font, FontMetricsMapper metrics) {
+    private Rectangle getTextBoundingBox(                        // CSOK: ParameterNumber
+            int x, int y,
+            int letterSpacing, int wordSpacing, int[] dx,
+            String text,
+            Font font, FontMetricsMapper metrics) {
         int maxAscent = metrics.getMaxAscent(font.getFontSize()) / 1000;
         int descent = metrics.getDescender(font.getFontSize()) / 1000; //is negative
         int safetyMargin = (int)(SAFETY_MARGIN_FACTOR * font.getFontSize());
index 287f896074b513f04082e0f66d1d836867cf423b..f8090fdeb1d6ec38e0e9fa5e1a88e61a65d4f695 100644 (file)
@@ -50,9 +50,9 @@ public class PDFBorderPainter extends BorderPainter {
     }
 
     /** {@inheritDoc} */
-    protected void drawBorderLine                               // CSOK: ParameterNumber
-        (int x1, int y1, int x2, int y2, boolean horz,
-         boolean startOrBefore, int style, Color col) {
+    protected void drawBorderLine(                               // CSOK: ParameterNumber
+            int x1, int y1, int x2, int y2, boolean horz,
+            boolean startOrBefore, int style, Color col) {
        drawBorderLine(generator, x1 / 1000f, y1 / 1000f, x2 / 1000f, y2 / 1000f,
                horz, startOrBefore, style, col);
     }
@@ -61,10 +61,10 @@ public class PDFBorderPainter extends BorderPainter {
      * @param generator pdf content generator
      * @see BorderPainter#drawBorderLine
      */
-    public static void drawBorderLine       // CSOK: ParameterNumber|MethodLength
-        (PDFContentGenerator generator,
-         float x1, float y1, float x2, float y2, boolean horz,  // CSOK: JavadocMethod
-         boolean startOrBefore, int style, Color col) {         // CSOK: JavadocMethod
+    public static void drawBorderLine(       // CSOK: ParameterNumber|MethodLength
+            PDFContentGenerator generator,
+            float x1, float y1, float x2, float y2, boolean horz,  // CSOK: JavadocMethod
+            boolean startOrBefore, int style, Color col) {         // CSOK: JavadocMethod
         float colFactor;
         float w = x2 - x1;
         float h = y2 - y1;
index f5d5169c4c3383f3057ea1718431d20c7017292f..2d881571aefc29cb755c2d4ea4d99af09fd20452 100644 (file)
@@ -52,9 +52,9 @@ public class PSBorderPainter extends BorderPainter {
     }
 
     /** {@inheritDoc} */
-    protected void drawBorderLine                               // CSOK: ParameterNumber
-        (int x1, int y1, int x2, int y2, boolean horz,
-         boolean startOrBefore, int style, Color col) throws IOException {
+    protected void drawBorderLine(                               // CSOK: ParameterNumber
+            int x1, int y1, int x2, int y2, boolean horz,
+            boolean startOrBefore, int style, Color col) throws IOException {
        drawBorderLine(generator, toPoints(x1), toPoints(y1), toPoints(x2), toPoints(y2),
                horz, startOrBefore, style, col);
     }
@@ -71,10 +71,10 @@ public class PSBorderPainter extends BorderPainter {
      * @param gen ps content generator
      * @see BorderPainter#drawBorderLine
      */
-    public static void drawBorderLine                           // CSOK: ParameterNumber
-        (PSGenerator gen,
-         float x1, float y1, float x2, float y2, boolean horz,  // CSOK: JavadocMethod
-         boolean startOrBefore, int style, Color col)           // CSOK: JavadocMethod
+    public static void drawBorderLine(                           // CSOK: ParameterNumber
+            PSGenerator gen,
+            float x1, float y1, float x2, float y2, boolean horz,  // CSOK: JavadocMethod
+            boolean startOrBefore, int style, Color col)           // CSOK: JavadocMethod
         throws IOException {                                    // CSOK: JavadocMethod
         float w = x2 - x1;
         float h = y2 - y1;
index 05a8121b8d994940d9abbfd47d847e67f9c60a94..b8a6d40f659c95c93bc4e6615df8bcbfbf66e6d4 100644 (file)
@@ -403,10 +403,10 @@ public class PSPainter extends AbstractIFPainter {
         }
     }
 
-    private void writeText                                      // CSOK: ParameterNumber
-        (String text, int start, int len,
-         int letterSpacing, int wordSpacing, int[] dx,
-         Font font, Typeface tf) throws IOException {
+    private void writeText(                                      // CSOK: ParameterNumber
+            String text, int start, int len,
+            int letterSpacing, int wordSpacing, int[] dx,
+            Font font, Typeface tf) throws IOException {
         PSGenerator generator = getGenerator();
         int end = start + len;
         int initialSize = len;
index b64eb172c4ad14d66c1fb56b9f2c82a2d07df23f..aa36ea28f803bfb6b653c00bdb03976cd8af7e10 100644 (file)
@@ -494,9 +494,9 @@ public class TXTRenderer extends AbstractPathOrientedRenderer {
     /**
      * {@inheritDoc}
      */
-    protected void drawBorderLine                               // CSOK: ParameterNumber
-        (float x1, float y1, float x2, float y2,
-         boolean horz, boolean startOrBefore, int style, Color col) {
+    protected void drawBorderLine(                               // CSOK: ParameterNumber
+            float x1, float y1, float x2, float y2,
+            boolean horz, boolean startOrBefore, int style, Color col) {
 
         int borderHeight = bm.getHeight();
         int borderWidth = bm.getWidth();
index 6f4e21382eae48c825967b85db0e1cc07ab113dc..30f6e9fc3df5e46a849aec0b39af1d104053bfbe 100644 (file)
@@ -118,10 +118,10 @@ public final class ColorExt extends Color {
      *            ICC color values
      * @return the requested color object
      */
-    public static ColorExt createFromSvgIccColor                // CSOK: ParameterNumber
-        (float red, float green,
-         float blue, float opacity, String profileName, String profileHref,
-         ColorSpace profileCS, float[] colorValues) {
+    public static ColorExt createFromSvgIccColor(                // CSOK: ParameterNumber
+            float red, float green,
+            float blue, float opacity, String profileName, String profileHref,
+            ColorSpace profileCS, float[] colorValues) {
         //TODO this method is not referenced by FOP, can it be deleted?
         ColorExt ce = new ColorExt(red, green, blue, opacity);
         ce.rgbReplacementRed = -1;