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

14 files changed:
checkstyle-5.5.xml
src/codegen/unicode/java/org/apache/fop/hyphenation/UnicodeClasses.java
src/java/org/apache/fop/afp/goca/GraphicsSetProcessColor.java
src/java/org/apache/fop/complexscripts/fonts/GlyphProcessingState.java
src/java/org/apache/fop/complexscripts/fonts/GlyphTable.java
src/java/org/apache/fop/complexscripts/fonts/OTFAdvancedTypographicTableReader.java
src/java/org/apache/fop/complexscripts/scripts/DefaultScriptProcessor.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/CharScript.java
src/java/org/apache/fop/layoutmgr/inline/TextLayoutManager.java
src/java/org/apache/fop/render/intermediate/IFUtil.java
src/java/org/apache/fop/util/XMLUtil.java

index 293f11bb43444b0e6921b1b4177b86b3db505e8e..da4cc32d19af7cf30eaba7ed8c857908a115c324 100644 (file)
     <!-- ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... -->
 
     <!-- ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... -->
-    <!-- <module name="OneStatementPerLine"/> produces 43 new errors -->
+    <module name="OneStatementPerLine"/>
     <!-- ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... -->
 
     <!-- ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... -->
index ec04b90a26720e088e98c59f0346c2f8545cac9d..8a5327a0eec012518ba175889647f73813f03f41 100644 (file)
@@ -151,8 +151,12 @@ public final class UnicodeClasses {
     /**
      * The column numbers in the UCD file
      */
-    public static final int UNICODE = 0, GENERAL_CATEGORY = 2, SIMPLE_UPPERCASE_MAPPING = 12,
-    SIMPLE_LOWERCASE_MAPPING = 13, SIMPLE_TITLECASE_MAPPING = 14, NUM_FIELDS = 15;
+    public static final int UNICODE = 0;
+    public static final int GENERAL_CATEGORY = 2;
+    public static final int SIMPLE_UPPERCASE_MAPPING = 12;
+    public static final int SIMPLE_LOWERCASE_MAPPING = 13;
+    public static final int SIMPLE_TITLECASE_MAPPING = 14;
+    public static final int NUM_FIELDS = 15;
 
     /**
      * Generate classes.xml from Unicode Character Database files
index 07d6c78af6cdbc088ef9c76a13c886584dfb5353..fc21c0f601be167d9d198ebf1158ab9481a367d5 100644 (file)
@@ -44,7 +44,9 @@ public class GraphicsSetProcessColor extends AbstractGraphicsDrawingOrder {
      * X'08' CIELAB
      * X'40' Standard OCA color space
      */
-    private static final byte RGB = 0x01, CMYK = 0x04, CIELAB = 0x08;
+    private static final byte RGB = 0x01;
+    private static final byte CMYK = 0x04;
+    private static final byte CIELAB = 0x08;
 
     private final Color color;
     private final int componentsSize;
index acccdc86c1cfc5179c68d03668780fa57f8d8cee..4b04b1ca9ac3ebb16d86af069fcbb5167e97d417 100644 (file)
@@ -256,7 +256,8 @@ public class GlyphProcessingState {
             if ( consumed == 0 ) {
                 consumed = 1;
             }
-            index += consumed; consumed = 0;
+            index += consumed;
+            consumed = 0;
             if ( index > indexLast ) {
                 index = indexLast;
             }
@@ -297,7 +298,8 @@ public class GlyphProcessingState {
             if ( consumed == 0 ) {
                 consumed = 1;
             }
-            index -= consumed; consumed = 0;
+            index -= consumed;
+            consumed = 0;
             if ( index < 0 ) {
                 index = 0;
             }
@@ -452,7 +454,8 @@ public class GlyphProcessingState {
             } else {
                 if ( ( ignoreTester == null ) || ! ignoreTester.test ( gi, getLookupFlags() ) ) {
                     if ( k < count ) {
-                        glyphs [ k++ ] = gi; counted++;
+                        glyphs [ k++ ] = gi;
+                        counted++;
                     } else {
                         break;
                     }
@@ -478,7 +481,8 @@ public class GlyphProcessingState {
             } else {
                 if ( ( ignoreTester == null ) || ! ignoreTester.test ( gi, getLookupFlags() ) ) {
                     if ( k < count ) {
-                        glyphs [ k++ ] = gi; counted++;
+                        glyphs [ k++ ] = gi;
+                        counted++;
                     } else {
                         break;
                     }
@@ -698,7 +702,8 @@ public class GlyphProcessingState {
             } else {
                 if ( ( ignoreTester == null ) || ! ignoreTester.test ( gi, getLookupFlags() ) ) {
                     if ( k < count ) {
-                        associations [ k++ ] = getAssociation ( i - index ); counted++;
+                        associations [ k++ ] = getAssociation ( i - index );
+                        counted++;
                     } else {
                         break;
                     }
@@ -725,7 +730,8 @@ public class GlyphProcessingState {
             } else {
                 if ( ( ignoreTester == null ) || ! ignoreTester.test ( gi, getLookupFlags() ) ) {
                     if ( k < count ) {
-                        associations [ k++ ] = getAssociation ( i - index ); counted++;
+                        associations [ k++ ] = getAssociation ( i - index );
+                        counted++;
                     } else {
                         break;
                     }
index 91f8d4924c6d34d695a9d66387f0bc0f54c1f8f5..427973359882118f7d733d393c6c6ade611db9e0 100644 (file)
@@ -516,7 +516,8 @@ public class GlyphTable {
                     added = true;
                 } else if ( d == 0 ) {
                     // duplicate entry is ignored
-                    added = false; subtable = null;
+                    added = false;
+                    subtable = null;
                 }
             }
             // append at end of list
index 5fe2be852980f283b606c14ab878b4acea301d29..c33cf140e3530cd74e3b4a0812d71d3bb1e07acf 100644 (file)
@@ -1680,11 +1680,23 @@ public final class OTFAdvancedTypographicTableReader {
         int df = in.readTTFUShort();
         int s1, m1, dm, dd, s2;
         if ( df == 1 ) {
-            s1 = 14; m1 = 0x3; dm = 1; dd = 4; s2 = 2;
+            s1 = 14;
+            m1 = 0x3;
+            dm = 1;
+            dd = 4;
+            s2 = 2;
         } else if ( df == 2 ) {
-            s1 = 12; m1 = 0xF; dm = 7; dd = 16; s2 = 4;
+            s1 = 12;
+            m1 = 0xF;
+            dm = 7;
+            dd = 16;
+            s2 = 4;
         } else if ( df == 3 ) {
-            s1 = 8; m1 = 0xFF; dm = 127; dd = 256; s2 = 8;
+            s1 = 8;
+            m1 = 0xFF;
+            dm = 127;
+            dd = 256;
+            s2 = 8;
         } else {
             log.debug ( "unsupported device table delta format: " + df + ", ignoring device table" );
             return null;
@@ -3760,7 +3772,9 @@ public final class OTFAdvancedTypographicTableReader {
 
     private void resetATStateAll() {
         resetATState();
-        gdef = null; gsub = null; gpos = null;
+        gdef = null;
+        gsub = null;
+        gpos = null;
     }
 
     /** helper method for formatting an integer array for output */
index ff70e6a671a534c6c6ce6bfeb984b075493d229e..3a704e4b37ea630278564bc2f59ec5ce95ba4697 100644 (file)
@@ -105,27 +105,34 @@ public class DefaultScriptProcessor extends ScriptProcessor {
                 int[] pa = ( gpa != null ) ? gpa [ i ] : null;
                 GlyphSequence.CharAssociation ca = aa [ i ];
                 if ( gdef.isGlyphClass ( gid, GlyphDefinitionTable.GLYPH_CLASS_MARK ) ) {
-                    nga [ k ] = gid; naa [ k ] = ca;
+                    nga [ k ] = gid;
+                    naa [ k ] = ca;
                     if ( npa != null ) {
                         npa [ k ] = pa;
                     }
                     k++;
                 } else {
                     if ( bg != -1 ) {
-                        nga [ k ] = bg; naa [ k ] = ba;
+                        nga [ k ] = bg;
+                        naa [ k ] = ba;
                         if ( npa != null ) {
                             npa [ k ] = bpa;
                         }
                         k++;
-                        bg = -1; ba = null; bpa = null;
+                        bg = -1;
+                        ba = null;
+                        bpa = null;
                     }
                     if ( bg == -1 ) {
-                        bg = gid; ba = ca; bpa = pa;
+                        bg = gid;
+                        ba = ca;
+                        bpa = pa;
                     }
                 }
             }
             if ( bg != -1 ) {
-                nga [ k ] = bg; naa [ k ] = ba;
+                nga [ k ] = bg;
+                naa [ k ] = ba;
                 if ( npa != null ) {
                     npa [ k ] = bpa;
                 }
index 52f1d72848779efd868ad43ecbf5ca43aee51360..f3f366ff332a58eb6eea4e333bc38ab1973a8a36 100644 (file)
@@ -222,11 +222,13 @@ public class DevanagariScriptProcessor extends IndicScriptProcessor {
                 int i;
                 // consume dead consonants
                 while ( ( i = isDeadConsonant ( ca, s, e ) ) > s ) {
-                    s = i; nd++;
+                    s = i;
+                    nd++;
                 }
                 // consume zero or one live consonant
                 if ( ( i = isLiveConsonant ( ca, s, e ) ) > s ) {
-                    s = i; nl++;
+                    s = i;
+                    nl++;
                 }
                 return ( ( nd > 0 ) || ( nl > 0 ) ) ? s : -1;
             }
index 4aec56a6531af5c165bfedd1c2937185c8b52d7a..aba4caabbbe8aa669bdacafc433c103d9bb8308b 100644 (file)
@@ -222,11 +222,13 @@ public class GujaratiScriptProcessor extends IndicScriptProcessor {
                 int i;
                 // consume dead consonants
                 while ( ( i = isDeadConsonant ( ca, s, e ) ) > s ) {
-                    s = i; nd++;
+                    s = i;
+                    nd++;
                 }
                 // consume zero or one live consonant
                 if ( ( i = isLiveConsonant ( ca, s, e ) ) > s ) {
-                    s = i; nl++;
+                    s = i;
+                    nl++;
                 }
                 return ( ( nd > 0 ) || ( nl > 0 ) ) ? s : -1;
             }
index 1f1b5673809c899cc32df98289f36a46454d92fa..479f8d15235306177ec01e979d37fc5cf85715c9 100644 (file)
@@ -223,11 +223,13 @@ public class GurmukhiScriptProcessor extends IndicScriptProcessor {
                 int i;
                 // consume dead consonants
                 while ( ( i = isDeadConsonant ( ca, s, e ) ) > s ) {
-                    s = i; nd++;
+                    s = i;
+                    nd++;
                 }
                 // consume zero or one live consonant
                 if ( ( i = isLiveConsonant ( ca, s, e ) ) > s ) {
-                    s = i; nl++;
+                    s = i;
+                    nl++;
                 }
                 return ( ( nd > 0 ) || ( nl > 0 ) ) ? s : -1;
             }
index bcce31327155290ca899b7e8994613c401d118c7..06bc02a4f19c6c0a519e7a1cdf009e482bd86bd9 100644 (file)
@@ -758,7 +758,8 @@ public final class CharScript {
                     assert v != null;
                     int c = v.intValue();
                     if ( c > cMax ) {
-                        cMax = c; sMax = s;
+                        cMax = c;
+                        sMax = s;
                     }
                     break;
                 }
index dadb2d665f4517288b511293a5ee5a5b05e3f11b..1ac206ee8147eb937f5f5a9e6466d78cbd69875f 100644 (file)
@@ -712,7 +712,8 @@ public class TextLayoutManager extends LeafNodeLayoutManager {
                             for ( int k = 0; k < 4; k++ ) {
                                 int a = wpa2 [ k ];
                                 if ( a != 0 ) {
-                                    wpa1 [ k ] += a; adjusted = true;
+                                    wpa1 [ k ] += a;
+                                    adjusted = true;
                                 }
                             }
                         }
index 86991ecb11fdd39d3e0c32c53bd30905017c8792..fa1e877801736ca936d00367fb8dfd2cf5d4afb6 100644 (file)
@@ -345,7 +345,8 @@ public final class IFUtil {
      */
     public static void adjustPA ( int[] paDst, int[] paSrc ) {
         if ( ( paDst != null ) && ( paSrc != null ) ) {
-            assert paDst.length == 4; assert paSrc.length == 4;
+            assert paDst.length == 4;
+            assert paSrc.length == 4;
             for ( int i = 0; i < 4; i++ ) {
                 paDst[i] += paSrc[i];
             }
index e91b6eb5d43ec6eafbfc2810ef1e3cf01ae228ea..86c0f66a81cb23f5d9e91da07e8baf708f179ba5 100644 (file)
@@ -197,7 +197,8 @@ public final class XMLUtil implements XMLConstants {
             for ( int k = 0; k < 4; k++ ) {
                 int a = pa [ k ];
                 if ( a != 0 ) {
-                    encodeNextAdjustment ( sb, nz, a ); nz = 0;
+                    encodeNextAdjustment ( sb, nz, a );
+                    nz = 0;
                 } else {
                     nz++;
                 }