View Javadoc
1   package com.google.checkstyle.test.chapter4formatting.rule451wheretobreak;
2   
3   class InputSeparatorWrapEllipsis {
4   
5     public void testMethodWithGoodWrapping(String... parameters) {}
6   
7     public void testMethodWithBadWrapping(String
8         ... parameters) {} // violation ''...' should be on the previous line.'
9   }