]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
enable MultipleVariableDeclarations rule; fix violations
authorGlenn Adams <gadams@apache.org>
Fri, 2 Mar 2012 21:34:30 +0000 (21:34 +0000)
committerGlenn Adams <gadams@apache.org>
Fri, 2 Mar 2012 21:34:30 +0000 (21:34 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1296483 13f79535-47bb-0310-9956-ffa450edef68

38 files changed:
checkstyle-5.5.xml
src/codegen/unicode/java/org/apache/fop/complexscripts/bidi/GenerateBidiClass.java
src/codegen/unicode/java/org/apache/fop/complexscripts/bidi/GenerateBidiTestData.java
src/codegen/unicode/java/org/apache/fop/hyphenation/UnicodeClasses.java
src/codegen/unicode/java/org/apache/fop/text/linebreak/GenerateLineBreakUtils.java
src/java/org/apache/fop/apps/FOURIResolver.java
src/java/org/apache/fop/apps/FopFactoryConfigurator.java
src/java/org/apache/fop/area/CTM.java
src/java/org/apache/fop/complexscripts/fonts/GlyphClassTable.java
src/java/org/apache/fop/complexscripts/fonts/GlyphCoverageTable.java
src/java/org/apache/fop/complexscripts/fonts/GlyphMappingTable.java
src/java/org/apache/fop/complexscripts/fonts/GlyphPositioningTable.java
src/java/org/apache/fop/complexscripts/fonts/GlyphSubstitutionTable.java
src/java/org/apache/fop/complexscripts/fonts/OTFAdvancedTypographicTableReader.java
src/java/org/apache/fop/complexscripts/scripts/DevanagariScriptProcessor.java
src/java/org/apache/fop/complexscripts/scripts/GujaratiScriptProcessor.java
src/java/org/apache/fop/complexscripts/scripts/GurmukhiScriptProcessor.java
src/java/org/apache/fop/complexscripts/util/GlyphSequence.java
src/java/org/apache/fop/fo/expr/ICCColorFunction.java
src/java/org/apache/fop/fo/expr/NamedColorFunction.java
src/java/org/apache/fop/fo/expr/RelativeNumericProperty.java
src/java/org/apache/fop/fo/properties/PropertyCache.java
src/java/org/apache/fop/fonts/AbstractCodePointMapping.java
src/java/org/apache/fop/fonts/MultiByteFont.java
src/java/org/apache/fop/fonts/autodetect/WindowsFontDirFinder.java
src/java/org/apache/fop/hyphenation/HyphenationTree.java
src/java/org/apache/fop/hyphenation/TernaryTree.java
src/java/org/apache/fop/layoutmgr/BlockContainerLayoutManager.java
src/java/org/apache/fop/layoutmgr/InlineKnuthSequence.java
src/java/org/apache/fop/layoutmgr/inline/LineLayoutManager.java
src/java/org/apache/fop/layoutmgr/inline/TextLayoutManager.java
src/java/org/apache/fop/pdf/PDFDocument.java
src/java/org/apache/fop/render/intermediate/IFRenderer.java
src/java/org/apache/fop/render/txt/TXTRenderer.java
src/java/org/apache/fop/svg/PDFGraphics2D.java
src/java/org/apache/fop/tools/anttasks/FileCompare.java
src/java/org/apache/fop/util/ColorUtil.java
src/java/org/apache/fop/util/XMLResourceBundle.java

index da4cc32d19af7cf30eaba7ed8c857908a115c324..0e361ba8b23c73ea4ddc1468d0c5891ac4bdae21 100644 (file)
     <!-- ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... -->
 
     <!-- ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... -->
-    <!-- <module name="MultipleVariableDeclarations"/> produces 78 new errors -->
+    <module name="MultipleVariableDeclarations"/>
     <!-- ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... -->
 
     <!-- ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... -->
index 616ac1cae0cde4fe209051b68d506d90733d479a..6b1222011ca305b2087ae09c107959dc45508c9d 100644 (file)
@@ -211,7 +211,8 @@ public final class GenerateBidiClass {
             }
         }
         // compile interval search data
-        int ivIndex = 0, niv = intervals.size();
+        int ivIndex = 0;
+        int niv = intervals.size();
         bcS1 = new int [ niv ];
         bcE1 = new int [ niv ];
         bcC1 = new byte [ niv ];
@@ -226,7 +227,8 @@ public final class GenerateBidiClass {
     }
 
     private static int[] parseInterval ( String interval ) throws Exception {
-        int s, e;
+        int s;
+        int e;
         String[] fa = interval.split("\\.\\.");
         if ( fa.length == 1 ) {
             s = Integer.parseInt ( fa[0], 16 );
index e2fab1d94f2fe13e1108e17c35178deefc4a510a..c78880c7454d9ca0aa200ff270f67efb88e87e69 100644 (file)
@@ -715,7 +715,9 @@ public final class GenerateBidiTestData {
             rm.put ( Integer.valueOf ( r[0] ), Integer.valueOf ( r[1] ) );
         }
         // add complement ranges save last
-        int s, e, cs = 0;
+        int s;
+        int e;
+        int cs = 0;
         List compRanges = new ArrayList ( rm.size() + 1 );
         for ( Iterator it = rm.entrySet().iterator(); it.hasNext(); ) {
             Map.Entry/*<Integer,Integer>*/ me = (Map.Entry/*<Integer,Integer>*/) it.next();
index 8a5327a0eec012518ba175889647f73813f03f41..14b1828afde47d59c558925fcf5266dfa3da1baa 100644 (file)
@@ -258,7 +258,8 @@ public final class UnicodeClasses {
                     continue;
                 }
 
-                int uppercode = -1, titlecode = -1;
+                int uppercode = -1;
+                int titlecode = -1;
                 if (!"".equals(fields[SIMPLE_UPPERCASE_MAPPING])) {
                     uppercode = Integer.parseInt(fields[SIMPLE_UPPERCASE_MAPPING], 16);
                 }
@@ -355,7 +356,10 @@ public final class UnicodeClasses {
      * @throws URISyntaxException if the input URI is incorrect
      */
     public static void main(String[] args) throws IOException, URISyntaxException {
-        String type = "ucd", prefix = "--", infile = null, outfile = null;
+        String type = "ucd";
+        String prefix = "--";
+        String infile = null;
+        String outfile = null;
         boolean hexcode = false;
         int i;
         for (i = 0; i < args.length && args[i].startsWith(prefix); ++i) {
index f4af3d915e6973a354769cc98a707c6953d125ff..9541f16eabb391ead38fd513f1f33afb2514e242 100644 (file)
@@ -558,7 +558,8 @@ public final class GenerateLineBreakUtils {
                     throw new Exception(lineBreakFileName + ':' + lineNumber + ": Unknown property value in " + line);
                 }
                 String codepoint = line.substring(0, idx);
-                int low, high;
+                int low;
+                int high;
                 idx = codepoint.indexOf("..");
                 try {
                     if (idx >= 0) {
index c7d564ea3dfb22bff736f4c6da6c271170d79928..a1d7fd6731b3fbbb4b53e9d8db240d496721e815 100644 (file)
@@ -183,7 +183,8 @@ public class FOURIResolver implements javax.xml.transform.URIResolver {
         if (source == null) {
             URL absoluteURL = null;
             int hashPos = href.indexOf('#');
-            String fileURL, fragment;
+            String fileURL;
+            String fragment;
             if (hashPos >= 0) {
                 fileURL = href.substring(0, hashPos);
                 fragment = href.substring(hashPos);
index 4ed59d0fe2425a5e57b177ff66f2961038eda454..c1555a7e743efff24ade30c0ee95c6a90d082193 100644 (file)
@@ -168,7 +168,9 @@ public class FopFactoryConfigurator {
         if (hyphPatConfig.length != 0) {
             Map/*<String,String>*/ hyphPatNames = new HashMap/*<String,String>*/();
             for (int i = 0; i < hyphPatConfig.length; ++i) {
-                String lang, country, filename;
+                String lang;
+                String country;
+                String filename;
                 StringBuffer error = new StringBuffer();
                 String location = hyphPatConfig[i].getLocation();
 
index c247e6b76380acea29915733df7af88aded62375..4b6adb9dcbcbea54998dedb2fac874cf2bee6497 100644 (file)
@@ -41,7 +41,12 @@ public class CTM implements Serializable {
 
     private static final long serialVersionUID = -8743287485623778341L;
 
-    private double a, b, c, d, e, f;
+    private double a;
+    private double b;
+    private double c;
+    private double d;
+    private double e;
+    private double f;
 
     private static final CTM CTM_LRTB = new CTM(1, 0, 0, 1, 0, 0);
     private static final CTM CTM_RLTB = new CTM(1, 0, 0, 1, 0, 0);
@@ -175,7 +180,8 @@ public class CTM implements Serializable {
      * @return CTM The result of rotating this CTM.
      */
     public CTM rotate(double angle) {
-        double cos, sin;
+        double cos;
+        double sin;
         if (angle == 90.0 || angle == -270.0) {
             cos = 0.0;
             sin = 1.0;
@@ -286,7 +292,8 @@ public class CTM implements Serializable {
                                        WritingMode writingMode,
                                        Rectangle2D absVPrect,
                                        FODimension reldims) {
-        int width, height;
+        int width;
+        int height;
         // We will use the absolute reference-orientation to set up the CTM.
         // The value here is relative to its ancestor reference area.
         if (absRefOrient % 180 == 0) {
index 88478531ed93f213612d154f5295531eb2aefc50..60ba6f86440d126659bc4653b2478a18e6f78f63 100644 (file)
@@ -203,7 +203,9 @@ public final class GlyphClassTable extends GlyphMappingTable implements GlyphCla
                 }
             }
             // extract glyph class array
-            int i = 0, n = entries.size() - 1, gcMax = -1;
+            int i = 0;
+            int n = entries.size() - 1;
+            int gcMax = -1;
             int[] gca = new int [ n ];
             while ( it.hasNext() ) {
                 Object o = it.next();
index a9b0fc2b5433151f90f5f735f2899c7611379fac..dea92d8c13a0e28ad4306c9be51203e3b3534c94 100644 (file)
@@ -174,7 +174,9 @@ public final class GlyphCoverageTable extends GlyphMappingTable implements Glyph
             return getMappedIndex ( gid );
         }
         private void populate ( List entries ) {
-            int i = 0, n = entries.size(), gidMax = -1;
+            int i = 0;
+            int n = entries.size();
+            int gidMax = -1;
             int[] map = new int [ n ];
             for ( Iterator it = entries.iterator(); it.hasNext();) {
                 Object o = it.next();
index a0791e8f6c976a21dd8192aec08a35d4eb4fd87e..e7d67ce6a0330c1d0e8c19c2dad376fe5c350a62 100644 (file)
@@ -157,7 +157,8 @@ public class GlyphMappingTable {
         }
         /** {@inheritDoc} */
         public int getMappedIndex ( int gid ) {
-            int i, mi;
+            int i;
+            int mi;
             if ( ( i = Arrays.binarySearch ( sa, gid ) ) >= 0 ) {
                 mi = getMappedIndex ( gid, sa [ i ], ma [ i ] );                // matches start of (some) range
             } else if ( ( i = - ( i + 1 ) ) == 0 ) {
@@ -179,7 +180,10 @@ public class GlyphMappingTable {
          */
         public abstract int getMappedIndex ( int gid, int s, int m );
         private void populate ( List entries ) {
-            int i = 0, n = entries.size(), gidMax = -1, miMax = -1;
+            int i = 0;
+            int n = entries.size();
+            int gidMax = -1;
+            int miMax = -1;
             int[] sa = new int [ n ];
             int[] ea = new int [ n ];
             int[] ma = new int [ n ];
index f8ac4e50463189f13cdca4d4256e7046bf258de7..01f78d2f20a339e229243d18b62e8b674b50313e 100644 (file)
@@ -258,7 +258,8 @@ public class GlyphPositioningTable extends GlyphTable {
         }
         /** {@inheritDoc} */
         public boolean position ( GlyphPositioningState ps ) {
-            int gi = ps.getGlyph(), ci;
+            int gi = ps.getGlyph();
+            int ci;
             if ( ( ci = getCoverageIndex ( gi ) ) < 0 ) {
                 return false;
             } else {
@@ -396,7 +397,8 @@ public class GlyphPositioningTable extends GlyphTable {
         /** {@inheritDoc} */
         public boolean position ( GlyphPositioningState ps ) {
             boolean applied = false;
-            int gi = ps.getGlyph(0), ci;
+            int gi = ps.getGlyph(0);
+            int ci;
             if ( ( ci = getCoverageIndex ( gi ) ) >= 0 ) {
                 int[] counts = ps.getGlyphsAvailable ( 0 );
                 int nga = counts[0];
@@ -587,7 +589,8 @@ public class GlyphPositioningTable extends GlyphTable {
         /** {@inheritDoc} */
         public boolean position ( GlyphPositioningState ps ) {
             boolean applied = false;
-            int gi = ps.getGlyph(0), ci;
+            int gi = ps.getGlyph(0);
+            int ci;
             if ( ( ci = getCoverageIndex ( gi ) ) >= 0 ) {
                 int[] counts = ps.getGlyphsAvailable ( 0 );
                 int nga = counts[0];
@@ -703,7 +706,8 @@ public class GlyphPositioningTable extends GlyphTable {
         /** {@inheritDoc} */
         public boolean position ( GlyphPositioningState ps ) {
             boolean applied = false;
-            int giMark = ps.getGlyph(), ciMark;
+            int giMark = ps.getGlyph();
+            int ciMark;
             if ( ( ciMark = getCoverageIndex ( giMark ) ) >= 0 ) {
                 MarkAnchor ma = getMarkAnchor ( ciMark, giMark );
                 if ( ma != null ) {
@@ -846,7 +850,8 @@ public class GlyphPositioningTable extends GlyphTable {
         /** {@inheritDoc} */
         public boolean position ( GlyphPositioningState ps ) {
             boolean applied = false;
-            int giMark = ps.getGlyph(), ciMark;
+            int giMark = ps.getGlyph();
+            int ciMark;
             if ( ( ciMark = getCoverageIndex ( giMark ) ) >= 0 ) {
                 MarkAnchor ma = getMarkAnchor ( ciMark, giMark );
                 int mxc = getMaxComponentCount();
@@ -1004,7 +1009,8 @@ public class GlyphPositioningTable extends GlyphTable {
         /** {@inheritDoc} */
         public boolean position ( GlyphPositioningState ps ) {
             boolean applied = false;
-            int giMark1 = ps.getGlyph(), ciMark1;
+            int giMark1 = ps.getGlyph();
+            int ciMark1;
             if ( ( ciMark1 = getCoverageIndex ( giMark1 ) ) >= 0 ) {
                 MarkAnchor ma = getMark1Anchor ( ciMark1, giMark1 );
                 if ( ma != null ) {
@@ -1134,7 +1140,8 @@ public class GlyphPositioningTable extends GlyphTable {
         /** {@inheritDoc} */
         public boolean position ( GlyphPositioningState ps ) {
             boolean applied = false;
-            int gi = ps.getGlyph(), ci;
+            int gi = ps.getGlyph();
+            int ci;
             if ( ( ci = getCoverageIndex ( gi ) ) >= 0 ) {
                 int[] rv = new int[1];
                 RuleLookup[] la = getLookups ( ci, gi, ps, rv );
@@ -1460,7 +1467,8 @@ public class GlyphPositioningTable extends GlyphTable {
         /** {@inheritDoc} */
         public boolean position ( GlyphPositioningState ps ) {
             boolean applied = false;
-            int gi = ps.getGlyph(), ci;
+            int gi = ps.getGlyph();
+            int ci;
             if ( ( ci = getCoverageIndex ( gi ) ) >= 0 ) {
                 int[] rv = new int[1];
                 RuleLookup[] la = getLookups ( ci, gi, ps, rv );
index 1b724a63bde32d649a5198e35553a097a252bf2b..b6db2fb476fd105cffd8796636ac891f45beb9d9 100644 (file)
@@ -246,7 +246,8 @@ public class GlyphSubstitutionTable extends GlyphTable {
         }
         /** {@inheritDoc} */
         public boolean substitute ( GlyphSubstitutionState ss ) {
-            int gi = ss.getGlyph(), ci;
+            int gi = ss.getGlyph();
+            int ci;
             if ( ( ci = getCoverageIndex ( gi ) ) < 0 ) {
                 return false;
             } else {
@@ -341,7 +342,8 @@ public class GlyphSubstitutionTable extends GlyphTable {
             }
         }
         private void populate ( List entries ) {
-            int i = 0, n = entries.size();
+            int i = 0;
+            int n = entries.size();
             int[] glyphs = new int [ n ];
             for ( Iterator it = entries.iterator(); it.hasNext();) {
                 Object o = it.next();
@@ -376,7 +378,8 @@ public class GlyphSubstitutionTable extends GlyphTable {
         }
         /** {@inheritDoc} */
         public boolean substitute ( GlyphSubstitutionState ss ) {
-            int gi = ss.getGlyph(), ci;
+            int gi = ss.getGlyph();
+            int ci;
             if ( ( ci = getCoverageIndex ( gi ) ) < 0 ) {
                 return false;
             } else {
@@ -461,7 +464,8 @@ public class GlyphSubstitutionTable extends GlyphTable {
         }
         /** {@inheritDoc} */
         public boolean substitute ( GlyphSubstitutionState ss ) {
-            int gi = ss.getGlyph(), ci;
+            int gi = ss.getGlyph();
+            int ci;
             if ( ( ci = getCoverageIndex ( gi ) ) < 0 ) {
                 return false;
             } else {
@@ -523,7 +527,8 @@ public class GlyphSubstitutionTable extends GlyphTable {
             }
         }
         private void populate ( List entries ) {
-            int i = 0, n = entries.size();
+            int i = 0;
+            int n = entries.size();
             int[][] gaa = new int [ n ][];
             for ( Iterator it = entries.iterator(); it.hasNext();) {
                 Object o = it.next();
@@ -553,7 +558,8 @@ public class GlyphSubstitutionTable extends GlyphTable {
         }
         /** {@inheritDoc} */
         public boolean substitute ( GlyphSubstitutionState ss ) {
-            int gi = ss.getGlyph(), ci;
+            int gi = ss.getGlyph();
+            int ci;
             if ( ( ci = getCoverageIndex ( gi ) ) < 0 ) {
                 return false;
             } else {
@@ -562,7 +568,8 @@ public class GlyphSubstitutionTable extends GlyphTable {
                     boolean reverse = false;
                     GlyphTester ignores = ss.getIgnoreDefault();
                     int[] counts = ss.getGlyphsAvailable ( 0, reverse, ignores );
-                    int nga = counts[0], ngi;
+                    int nga = counts[0];
+                    int ngi;
                     if ( nga > 1 ) {
                         int[] iga = ss.getGlyphs ( 0, nga, reverse, ignores, null, counts );
                         Ligature l = findLigature ( ls, iga );
@@ -653,7 +660,8 @@ public class GlyphSubstitutionTable extends GlyphTable {
             }
         }
         private void populate ( List entries ) {
-            int i = 0, n = entries.size();
+            int i = 0;
+            int n = entries.size();
             LigatureSet[] ligatureSets = new LigatureSet [ n ];
             for ( Iterator it = entries.iterator(); it.hasNext();) {
                 Object o = it.next();
@@ -683,7 +691,8 @@ public class GlyphSubstitutionTable extends GlyphTable {
         }
         /** {@inheritDoc} */
         public boolean substitute ( GlyphSubstitutionState ss ) {
-            int gi = ss.getGlyph(), ci;
+            int gi = ss.getGlyph();
+            int ci;
             if ( ( ci = getCoverageIndex ( gi ) ) < 0 ) {
                 return false;
             } else {
@@ -1009,7 +1018,8 @@ public class GlyphSubstitutionTable extends GlyphTable {
         }
         /** {@inheritDoc} */
         public boolean substitute ( GlyphSubstitutionState ss ) {
-            int gi = ss.getGlyph(), ci;
+            int gi = ss.getGlyph();
+            int ci;
             if ( ( ci = getCoverageIndex ( gi ) ) < 0 ) {
                 return false;
             } else {
index c33cf140e3530cd74e3b4a0812d71d3bb1e07acf..1de69c45965a2035065ad048ac07d436137cf6fc 100644 (file)
@@ -1678,7 +1678,11 @@ public final class OTFAdvancedTypographicTableReader {
         int es = in.readTTFUShort();
         // read delta format
         int df = in.readTTFUShort();
-        int s1, m1, dm, dd, s2;
+        int s1;
+        int m1;
+        int dm;
+        int dd;
+        int s2;
         if ( df == 1 ) {
             s1 = 14;
             m1 = 0x3;
index f3f366ff332a58eb6eea4e333bc38ab1973a8a36..58bfae734b32fe401268fe2b677b461502a76a93 100644 (file)
@@ -238,8 +238,10 @@ public class DevanagariScriptProcessor extends IndicScriptProcessor {
             if ( s < 0 ) {
                 return -1;
             } else {
-                int c, i = 0;
-                int nc = 0, nh = 0;
+                int c;
+                int i = 0;
+                int nc = 0;
+                int nh = 0;
                 do {
                     // C
                     if ( ( s + i ) < e ) {
@@ -277,8 +279,11 @@ public class DevanagariScriptProcessor extends IndicScriptProcessor {
             if ( s < 0 ) {
                 return -1;
             } else {
-                int c, i = 0;
-                int nc = 0, nv = 0, nx = 0;
+                int c;
+                int i = 0;
+                int nc = 0;
+                int nv = 0;
+                int nx = 0;
                 do {
                     // C
                     if ( ( s + i ) < e ) {
index aba4caabbbe8aa669bdacafc433c103d9bb8308b..7d1af5366598eed65885bd225b5357e3e8a36b8a 100644 (file)
@@ -238,8 +238,10 @@ public class GujaratiScriptProcessor extends IndicScriptProcessor {
             if ( s < 0 ) {
                 return -1;
             } else {
-                int c, i = 0;
-                int nc = 0, nh = 0;
+                int c;
+                int i = 0;
+                int nc = 0;
+                int nh = 0;
                 do {
                     // C
                     if ( ( s + i ) < e ) {
@@ -277,8 +279,11 @@ public class GujaratiScriptProcessor extends IndicScriptProcessor {
             if ( s < 0 ) {
                 return -1;
             } else {
-                int c, i = 0;
-                int nc = 0, nv = 0, nx = 0;
+                int c;
+                int i = 0;
+                int nc = 0;
+                int nv = 0;
+                int nx = 0;
                 do {
                     // C
                     if ( ( s + i ) < e ) {
index 479f8d15235306177ec01e979d37fc5cf85715c9..f5be626a02970b361ba7dd9c90bede9cab540f30 100644 (file)
@@ -239,8 +239,10 @@ public class GurmukhiScriptProcessor extends IndicScriptProcessor {
             if ( s < 0 ) {
                 return -1;
             } else {
-                int c, i = 0;
-                int nc = 0, nh = 0;
+                int c;
+                int i = 0;
+                int nc = 0;
+                int nh = 0;
                 do {
                     // C
                     if ( ( s + i ) < e ) {
@@ -278,8 +280,11 @@ public class GurmukhiScriptProcessor extends IndicScriptProcessor {
             if ( s < 0 ) {
                 return -1;
             } else {
-                int c, i = 0;
-                int nc = 0, nv = 0, nx = 0;
+                int c;
+                int i = 0;
+                int nc = 0;
+                int nv = 0;
+                int nx = 0;
                 do {
                     // C
                     if ( ( s + i ) < e ) {
index 0e256241d734b3403f3fa554c4d9996e41d4a77d..e4316d596f46de3155331f3995e8e3d52efa8ca6 100644 (file)
@@ -1033,7 +1033,11 @@ public class GlyphSequence implements Cloneable {
          */
         private static int[] mergeIntervals ( int[] ia ) {
             int ni = ia.length;
-            int i, n, nm, is, ie;
+            int i;
+            int n;
+            int nm;
+            int is;
+            int ie;
             // count merged sub-intervals
             for ( i = 0, n = ni, nm = 0, is = ie = -1; i < n; i += 2 ) {
                 int s = ia [ i + 0 ];
index eaf932961b4816961c641a50b433f35d95428b69..756de1b20a8a867477d98f3feefd1a4834a713e0 100644 (file)
@@ -79,7 +79,9 @@ class ICCColorFunction extends FunctionBase {
         }
         String src = (cp != null ? cp.getSrc() : "");
 
-        float red = 0, green = 0, blue = 0;
+        float red = 0;
+        float green = 0;
+        float blue = 0;
         red = args[0].getNumber().floatValue();
         green = args[1].getNumber().floatValue();
         blue = args[2].getNumber().floatValue();
index e4f8bc643f8180960e01c6f698909c8d22d82516..f2ff19ef1f3e0b98ea6e699cb2a11c9aadc13854 100644 (file)
@@ -66,7 +66,9 @@ class NamedColorFunction extends FunctionBase {
             throw pe;
         }
 
-        float red = 0, green = 0, blue = 0;
+        float red = 0;
+        float green = 0;
+        float blue = 0;
         red = args[0].getNumber().floatValue();
         green = args[1].getNumber().floatValue();
         blue = args[2].getNumber().floatValue();
index 8830700567d6f64d873f53bc30eb906377e30981..10fde01b6763689ad95280fc9ac6ea200ac6c999 100644 (file)
@@ -223,7 +223,8 @@ public class RelativeNumericProperty extends Property implements Length {
      *         specification.
      */
     public double getTableUnits() {
-        double tu1 = 0.0, tu2 = 0.0;
+        double tu1 = 0.0;
+        double tu2 = 0.0;
         if (op1 instanceof RelativeNumericProperty) {
             tu1 = ((RelativeNumericProperty) op1).getTableUnits();
         } else if (op1 instanceof TableColLength) {
index 9201257960d1e0bf33e7d0ac3925093c71531d88..8bd1d847f0cd635220d2724db95afd8f2748415e 100644 (file)
@@ -263,7 +263,8 @@ public final class PropertyCache {
 
                     CacheEntry[] newTable = new CacheEntry[newLength];
 
-                    int hash, idx;
+                    int hash;
+                    int idx;
                     Object o;
                     newLength--;
                     for (int i = table.length; --i >= 0;) {
index cc9909135b5e26e8818ac2e8ed5f79bd6059e06a..903fe56ecf4122eb5412df3707e413d3f1e60830 100644 (file)
@@ -125,7 +125,8 @@ public class AbstractCodePointMapping implements SingleByteEncoding {
                 return latin1;
             }
         }
-        int bot = 0, top = characters.length - 1;
+        int bot = 0;
+        int top = characters.length - 1;
         while (top >= bot) {
             int mid = (bot + top) / 2;
             char mc = characters[mid];
index 3b15662dce95227f325950774ab825048d140cde..73ef7c2289489402a5a21bf028eca32899b8a8e8 100644 (file)
@@ -489,7 +489,8 @@ public class MultiByteFont extends CIDFont implements Substitutable, Positionabl
     private GlyphSequence mapCharsToGlyphs ( CharSequence cs ) {
         IntBuffer cb = IntBuffer.allocate ( cs.length() );
         IntBuffer gb = IntBuffer.allocate ( cs.length() );
-        int gi, giMissing = findGlyphIndex ( Typeface.NOT_FOUND );
+        int gi;
+        int giMissing = findGlyphIndex ( Typeface.NOT_FOUND );
         for ( int i = 0, n = cs.length(); i < n; i++ ) {
             int cc = cs.charAt ( i );
             if ( ( cc >= 0xD800 ) && ( cc < 0xDC00 ) ) {
@@ -548,7 +549,8 @@ public class MultiByteFont extends CIDFont implements Substitutable, Positionabl
                          + (char) cc + "'");
             }
             if ( cc > 0x00FFFF ) {
-                int sh, sl;
+                int sh;
+                int sl;
                 cc -= 0x10000;
                 sh = ( ( cc >> 10 ) & 0x3FF ) + 0xD800;
                 sl = ( ( cc >>  0 ) & 0x3FF ) + 0xDC00;
index d9773a026220236c16723635487901321c1a3a96..53b076073b6e44630e96885c80e5d654c5842f37 100644 (file)
@@ -67,7 +67,8 @@ public class WindowsFontDirFinder implements FontDirFinder {
                 // should continue if this fails
             }
         }
-        File osFontsDir = null, psFontsDir = null;
+        File osFontsDir = null;
+        File psFontsDir = null;
         if (windir != null) {
             // remove any trailing '/'
             if (windir.endsWith("/")) {
index fa7d218d98c9279e13ebcf925720ad8da579f72f..fba51fdf8c582c193ce2cef6499cf1689e5f6103 100644 (file)
@@ -84,7 +84,8 @@ public class HyphenationTree extends TernaryTree
      * are stored.
      */
     protected int packValues(String values) {
-        int i, n = values.length();
+        int i;
+        int n = values.length();
         int m = (n & 1) == 1 ? (n >> 1) + 2 : (n >> 1) + 1;
         int offset = vspace.alloc(m);
         byte[] va = vspace.getArray();
@@ -247,7 +248,8 @@ public class HyphenationTree extends TernaryTree
     protected void searchPatterns(char[] word, int index, byte[] il) {
         byte[] values;
         int i = index;
-        char p, q;
+        char p;
+        char q;
         char sp = word[i];
         p = root;
 
index 206b81f3f628182ef0c7a8fe272aae39116344d0..2734c0385906d1437490b783d8ed1a419fbb8817 100644 (file)
@@ -271,7 +271,9 @@ public class TernaryTree implements Cloneable, Serializable {
      * @return an integer
      */
     public static int strcmp(String str, char[] a, int start) {
-        int i, d, len = str.length();
+        int i;
+        int d;
+        int len = str.length();
         for (i = 0; i < len; i++) {
             d = (int)str.charAt(i) - a[start + i];
             if (d != 0) {
@@ -448,7 +450,8 @@ public class TernaryTree implements Cloneable, Serializable {
     public void balance() {
         // System.out.print("Before root splitchar = "); System.out.println(sc[root]);
 
-        int i = 0, n = length;
+        int i = 0;
+        int n = length;
         String[] k = new String[n];
         char[] v = new char[n];
         Iterator iter = new Iterator();
index 205fac0f2dd3ca4f8e9d64650529e69b4831ba1a..aab505d8b105c7b3dd8af3883007efa8a47c0463 100644 (file)
@@ -423,7 +423,8 @@ public class BlockContainerLayoutManager extends BlockStackingLayoutManager
 
         boolean bpDirectionChanges = blockProgressionDirectionChanges();
         Point offset = getAbsOffset();
-        int allocBPD, allocIPD;
+        int allocBPD;
+        int allocIPD;
         if (height.getEnum() == EN_AUTO
                 || (!height.isAbsolute() && getAncestorBlockAreaBPD() <= 0)) {
             //auto height when height="auto" or "if that dimension is not specified explicitly
index 81df3c992c4a775416e78205b64b3c7055e64c41..684977b9c1f72784abd2b5b427ad50fffd9153d5 100644 (file)
@@ -70,7 +70,8 @@ public class InlineKnuthSequence extends KnuthSequence  {
             return false;
         }
         // does the first element of the first paragraph add to an existing word?
-        ListElement lastOldElement, firstNewElement;
+        ListElement lastOldElement;
+        ListElement firstNewElement;
         lastOldElement = getLast();
         firstNewElement = sequence.getElement(0);
         if (firstNewElement.isBox() && !((KnuthElement) firstNewElement).isAuxiliary()
index f57b9367a6eff5fb5eee553385c7de7394668403..3b2f11ea21183545d44fc724af4486bc5127ac74 100644 (file)
@@ -1231,7 +1231,8 @@ public class LineLayoutManager extends InlineStackingLayoutManager
         ListIterator currParIterator = currPar.listIterator(currPar.ignoreAtStart);
         // list of TLM involved in hyphenation
         List updateList = new LinkedList();
-        KnuthElement firstElement, nextElement;
+        KnuthElement firstElement;
+        KnuthElement nextElement;
         // current InlineLevelLayoutManager
         InlineLevelLayoutManager currLM = null;
         // number of KnuthBox elements containing word fragments
index 1ac206ee8147eb937f5f5a9e6466d78cbd69875f..4010777adecf215665d491e13d15531e4104bce9 100644 (file)
@@ -1320,7 +1320,8 @@ public class TextLayoutManager extends LeafNodeLayoutManager {
 
         // Find the first and last positions in oldList that point to an AreaInfo
         // (i.e. getLeafPos() != -1)
-        LeafPosition startPos = null, endPos = null;
+        LeafPosition startPos = null;
+        LeafPosition endPos = null;
         ListIterator oldListIter;
         for (oldListIter = oldList.listIterator(); oldListIter.hasNext();) {
             Position pos = ((KnuthElement) oldListIter.next()).getPosition();
@@ -1346,7 +1347,8 @@ public class TextLayoutManager extends LeafNodeLayoutManager {
         int areaInfosRemoved = 0;
 
         if (!changeList.isEmpty()) {
-            int oldIndex = -1, changeIndex;
+            int oldIndex = -1;
+            int changeIndex;
             PendingChange currChange;
             ListIterator changeListIterator = changeList.listIterator();
             while (changeListIterator.hasNext()) {
index 256efd658f4b887ba7fe6567ee068d5827a039cf..e9206a1bb5838770192ee8f2cbad9b1ff38a6ce5 100644 (file)
@@ -1025,7 +1025,8 @@ public class PDFDocument {
         pdf.append(this.objectcount + 1);
         pdf.append("\n0000000000 65535 f \n");
 
-        String s, loc;
+        String s;
+        String loc;
         for (int count = 0; count < this.location.size(); count++) {
             final String padding = "0000000000";
             s = this.location.get(count).toString();
index 2987a4be80e249e28e8f9ab1343cf1ecd12a3a25..64633bfabaec5cfc3529607017fb4e2d06587c0d 100644 (file)
@@ -1146,8 +1146,10 @@ public class IFRenderer extends AbstractPathOrientedRenderer {
         private int[][] dp = new int[INITIAL_BUFFER_SIZE][4];
         // private int lastDPPos = 0; // TBD - not yet used
         private final StringBuffer text = new StringBuffer();
-        private int startx, starty;
-        private int tls, tws;
+        private int startx;
+        private int starty;
+        private int tls;
+        private int tws;
         private final boolean combined = false;
 
         void addChar(char ch) {
index eecb6a623893c113d9d9952d9f6943d5498341b7..d20ca3bed26a16bd2b90d8bc667b3ed3e4d08cfa 100644 (file)
@@ -508,7 +508,8 @@ public class TXTRenderer extends AbstractPathOrientedRenderer {
         int borderStartX = bm.getStartX();
         int borderStartY = bm.getStartY();
 
-        int x, y;
+        int x;
+        int y;
         if (horz && startOrBefore) { // BEFORE
             x = borderStartX;
             y = borderStartY;
@@ -523,7 +524,11 @@ public class TXTRenderer extends AbstractPathOrientedRenderer {
             y = borderStartY;
         }
 
-        int dx, dy, length, startType, endType;
+        int dx;
+        int dy;
+        int length;
+        int startType;
+        int endType;
         if (horz) {
             length = borderWidth;
             dx = 1;
index 429a1ea35635622d89b3fe07e3929bf9474180a2..018653dbb8cf3ad7e7db50f2c27bfeb69be4ef99 100644 (file)
@@ -1064,7 +1064,8 @@ public class PDFGraphics2D extends AbstractGraphics2D implements NativeImageHand
         preparePainting();
 
         Shape clip = getClip();
-        Rectangle2D usrClipBounds, usrBounds;
+        Rectangle2D usrClipBounds;
+        Rectangle2D usrBounds;
         usrBounds = shape.getBounds2D();
         if (clip != null) {
             usrClipBounds  = clip.getBounds2D();
@@ -1078,7 +1079,9 @@ public class PDFGraphics2D extends AbstractGraphics2D implements NativeImageHand
         double usrW = usrBounds.getWidth();
         double usrH = usrBounds.getHeight();
 
-        Rectangle devShapeBounds, devClipBounds, devBounds;
+        Rectangle devShapeBounds;
+        Rectangle devClipBounds;
+        Rectangle devBounds;
         AffineTransform at = getTransform();
         devShapeBounds = at.createTransformedShape(shape).getBounds();
         if (clip != null) {
@@ -1117,7 +1120,10 @@ public class PDFGraphics2D extends AbstractGraphics2D implements NativeImageHand
             final byte[] rgb  = new byte[devW * devH * 3];
             final int[]  line = new int[devW];
             final byte[] mask;
-            int x, y, val, rgbIdx = 0;
+            int x;
+            int y;
+            int val;
+            int rgbIdx = 0;
 
             if (pcm.hasAlpha()) {
                 mask = new byte[devW * devH];
index 83b0aa8969579dad98f03109b7dc051ca2fc5a19..a50f9801e51e591dc86196eefcd6df80e61e5c74 100644 (file)
@@ -38,7 +38,8 @@ import java.text.DateFormat;
 
 public class FileCompare {
 
-    private String referenceDirectory, testDirectory;
+    private String referenceDirectory;
+    private String testDirectory;
     private String[] filenameList;
     private String filenames;
 
index 14042029e28ce58bd9faf07c0b2fb47704d3db7d..09e9dd50b41cdcc785889e0c676f6bf8a18f063a 100644 (file)
@@ -183,7 +183,9 @@ public final class ColorUtil {
      */
     private static Color parseAsJavaAWTColor(String value)
             throws PropertyException {
-        float red = 0.0f, green = 0.0f, blue = 0.0f;
+        float red = 0.0f;
+        float green = 0.0f;
+        float blue = 0.0f;
         int poss = value.indexOf("[");
         int pose = value.indexOf("]");
         try {
@@ -315,7 +317,9 @@ public final class ColorUtil {
             } else {
                 alpha = 0xFF;
             }
-            int red = 0, green = 0, blue = 0;
+            int red = 0;
+            int green = 0;
+            int blue = 0;
             if ((len == 4) || (len == 5)) {
                 //multiply by 0x11 = 17 = 255/15
                 red = Integer.parseInt(value.substring(1, 2), 16) * 0x11;
index 268ce1eed76dc174664e8869fa77e22bb3aa7819..a7444147ce0f16966c0c1f9c9c034c5c49ec8564 100644 (file)
@@ -227,7 +227,9 @@ public class XMLResourceBundle extends ResourceBundle {
     }
 
     private void setLocale(String name) {
-        String language = "", country = "", variant = "";
+        String language = "";
+        String country = "";
+        String variant = "";
         if (name.length() > 1) {
             int nextIndex = name.indexOf('_', 1);
             if (nextIndex == -1) {