Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 27ad4fbd12705120708cb6cba77e593896ccadc3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public class E {
	private int fField1;
	private String[] fField2;
	public void foo1() {
		fField2 = new String[]{"first string", //$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