View Javadoc
1   /*
2   SeparatorWrap
3   option = (default)EOL
4   tokens = ELLIPSIS
5   
6   
7   */
8   
9   package com.puppycrawl.tools.checkstyle.checks.whitespace.separatorwrap;
10  
11  class InputSeparatorWrapForEllipsis {
12  
13      public void testMethodWithGoodWrapping(String...
14              parameters) {
15  
16      }
17  
18      public void testMethodWithBadWrapping(String
19              ...parameters) { // violation ''...' should be on the previous line'
20  
21      }
22  
23  }
24