KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > puppycrawl > tools > checkstyle > indentation > InputCaseLevel


1 /*
2  * InputCaseLevel.java
3  *
4  * Created on February 21, 2003, 11:15 PM
5  */

6
7 package com.puppycrawl.tools.checkstyle.indentation;
8
9 /**
10  *
11  * @author jrichard
12  */

13 public class InputCaseLevel {
14     
15     /** Creates a new instance of InputCaseLevel */
16     public InputCaseLevel() {
17         int test = 4;
18         switch (test) {
19         case 4:
20             break;
21         case 2:
22             break;
23           default:
24             break;
25         }
26         
27         
28     }
29     
30 }
31
Popular Tags