KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * InputValidInterfaceDefIndent.java
3  *
4  * Created on December 12, 2002, 12:05 AM
5  */

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

13 public interface InputValidInterfaceDefIndent {
14
15     void myfunc();
16
17     
18     interface myInterface2 {
19     }
20
21     public interface myInterface3 extends myInterface2 { }
22     
23     public interface myInterface4
24         extends myInterface2
25     {
26         void myFunc2();
27     }
28
29
30 }
31
Popular Tags