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: 5ff856dc1a008de9737011d7d2a3ddf94d68b652 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
public class A {
	public void launch() {
		try {
			if ((javaProject == null) || !javaProject.exists()) {
				abort(
						PDEPlugin
								.getResourceString("JUnitLaunchConfiguration.error.invalidproject"),
						null,
						IJavaLaunchConfigurationConstants.ERR_NOT_A_JAVA_PROJECT);
			}
		} catch (CoreException e) {
		}
	}
}

Back to the top