View Javadoc
1   package com.puppycrawl.tools.checkstyle.checks.indentation.indentation; //indent:0 exp:0
2   
3   public abstract class InputIndentationInvalidThrowsIndent2 { //indent:0 exp:0
4    public void m1() throws Exception { //indent:1 exp:1
5    } //indent:1 exp:1
6    public void m2() throws //indent:1 exp:1
7   Exception { //indent:0 exp:6 warn
8    } //indent:1 exp:1
9    public void m3() throws Exception, //indent:1 exp:1
10  NullPointerException { //indent:0 exp:6 warn
11   } //indent:1 exp:1
12   public void m4() //indent:1 exp:1
13  throws Exception { //indent:0 exp:6 warn
14   } //indent:1 exp:1
15   public abstract void m5() //indent:1 exp:1
16  throws Exception; //indent:0 exp:6 warn
17   public void m6() //indent:1 exp:1
18  throws //indent:0 exp:6 warn
19  Exception { //indent:0 exp:6 warn
20   } //indent:1 exp:1
21   public void m7() //indent:1 exp:1
22  throws //indent:0 exp:6 warn
23  Exception, //indent:0 exp:6 warn
24  NullPointerException { //indent:0 exp:6 warn
25   } //indent:1 exp:1
26   double[] m8() //indent:1 exp:1
27  throws //indent:0 exp:6 warn
28  Exception { return null; //indent:0 exp:6 warn
29   } //indent:1 exp:1
30   public InputIndentationInvalidThrowsIndent2() //indent:1 exp:1
31  throws Exception {//indent:0 exp:6 warn
32   } //indent:1 exp:1
33   @TestAnnotation //indent:1 exp:1
34   public //indent:1 exp:1
35      static //indent:4 exp:4
36      void m9() //indent:4 exp:4
37  throws Exception {} //indent:0 exp:6 warn
38  } //indent:0 exp:0
39  
40  @interface TestAnnotation {} //indent:0 exp:0