Skip to main content
summaryrefslogtreecommitdiffstats
blob: 916b516bd07a1932b284b9b080560a5fee93405d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
public class E {
	private int fField1;
	private String[] fField2;
	public void foo1() {
		fField2 = new String[]{
				"first stringssssssssssssssssssssssssssssssssssssssssssssss", //$NON-NLS-1$
				"second string", //$NON-NLS-1$
				"third string", //$NON-NLS-1$
				"fourth string", //$NON-NLS-1$
				"fifth string" //$NON-NLS-1$
		};
	}
	public int foo1(int i) {
		return 0;
	}
}

Back to the top