1 6 7 package com.puppycrawl.tools.checkstyle.indentation; 8 9 13 public class InputInvalidIfIndent { 14 15 public InputInvalidIfIndent() { 17 } 18 19 public InputInvalidIfIndent(int dummy) 21 { 22 } 23 24 public void method() { 26 } 27 28 public void method2() 30 { 31 } 32 33 public void method2(int x, int y, int w, int h) 35 { 36 } 37 38 public void method2(int x, int y, int w, int h, 40 int x1, int y1, int w1, int h1) 41 { 42 } 43 44 public void emptyIfTest() 46 { 47 boolean test = true; 48 49 if (test) { 51 } 52 53 if (test) 56 { 57 } 58 59 if (test) 60 { 61 } 62 63 if (test) { 65 } else { } 67 68 if (test) 70 { 71 } 72 else 73 { 74 } 75 76 if (test) { 78 } 79 else 80 { 81 } 82 83 84 if (test) 86 { 87 } else 88 { 89 } 90 91 if (test) 93 { 94 } else { 95 } 96 97 if (test) { 99 } 100 else { 101 } 102 } 103 104 public void populatedIfTest() 106 { 107 boolean test = false; 108 if (test) 110 System.getProperty("blah"); 111 112 if (test) 114 System.getProperty("blah"); 115 else 116 System.getProperty("blah"); 117 118 119 if (test) { 121 System.getProperty("blah"); 122 } 123 124 if (test) 126 { 127 System.getProperty("blah"); 128 } 129 if (test) { 131 132 System. 133 getProperty("blah"); 134 } else { 135 System. 136 getProperty("blah"); 137 } 138 139 if (test) 141 { 142 System.getProperty("blah"); 143 System.getProperty("blah"); 144 } 145 else 146 { 147 System.getProperty("blah"); 148 System.getProperty("blah"); 149 } 150 151 if (test) { 153 System.getProperty("blah"); 154 } 155 else 156 { 157 System.getProperty("blah"); 158 } 159 160 161 if (test) 163 { 164 System.getProperty("blah"); 165 } else 166 { 167 System.getProperty("blah"); 168 } 169 170 if (test) 172 { 173 System.getProperty("blah"); 174 } else { 175 System.getProperty("blah"); 176 } 177 178 if (test) { 180 System.getProperty("blah"); 181 } 182 else { 183 System.getProperty("blah"); 184 } 185 186 if (test 187 && 7 < 8 && 8 < 9 188 && 10 < 11) { 189 } 190 191 if (test) 192 return; 193 194 if (test) { 195 } else if (7 < 8) { 196 } else if (8 < 9) { 197 } 198 199 if (test) { 200 System.getProperty("blah"); 201 } else if (7 < 8) { 202 System.getProperty("blah"); 203 } else if (8 < 9) { 204 System.getProperty("blah"); 205 } 206 207 208 if (test) 209 System.getProperty("blah"); 210 else if (7 < 8) 211 System.getProperty("blah"); 212 else if (8 < 9) 213 System.getProperty("blah"); 214 215 216 if (test) { 218 System.getProperty("blah"); 219 } else 220 if (7 < 8) { 221 System.getProperty("blah"); 222 } else 223 if (8 < 9) { 224 System.getProperty("blah"); 225 } 226 227 if (test) { 228 System.getProperty("blah"); } 229 } 230 231 public void parenIfTest() { 232 boolean test = true; 233 234 if (test 235 ) { 236 System.getProperty("blah"); 237 } 238 239 if (test 240 ) 241 { 242 System.getProperty("blah"); 243 } 244 245 if 246 ( 247 test 248 ) { 249 System.getProperty("blah"); 250 } 251 252 } 253 254 } 255 | Popular Tags |