View Javadoc
1   package com.google.checkstyle.test.chapter4formatting.rule451wheretobreak;
2   
3   class InputFormattedSeparatorWrapArrayDeclarator {
4   
5     protected int[] arrayDeclarationWithGoodWrapping = new int[] {1, 2};
6   
7     protected int[] arrayDeclarationWithBadWrapping = new int[] {1, 2};
8   }