View Javadoc
1   package com.google.checkstyle.test.chapter4formatting.rule451wheretobreak;
2   
3   class InputSeparatorWrapArrayDeclarator {
4   
5     protected int[] arrayDeclarationWithGoodWrapping = new int[] {1, 2};
6   
7     protected int[] arrayDeclarationWithBadWrapping = new int
8         [] {1, 2}; // violation ''\[' should be on the previous line.'
9   }