KickJava   Java API By Example, From Geeks To Geeks.

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


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

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

13 public class InputBraceAdjustment
14   {
15     
16     /** Creates a new instance of InputBraceAdjustment */
17     public InputBraceAdjustment()
18       {
19         // sorry about the religious commentary... :)
20
boolean uglyGnuStyle = true;
21         if (uglyGnuStyle)
22           {
23             System.out.println("ugly GNU style braces");
24         }
25       }
26     
27   }
28
Popular Tags