View Javadoc
1   package com.google.checkstyle.test.chapter4formatting.rule451wheretobreak;
2   
3   class InputSeparatorWrapEllipsis {
4   
5       public void testMethodWithGoodWrapping(String... // ok
6               parameters) {
7   
8       }
9   
10      public void testMethodWithBadWrapping(String
11              ...parameters) { // warn
12  
13      }
14  
15  }
16