Skip to main content
summaryrefslogtreecommitdiffstats
blob: d92fd63dd832b45cdbd4faabf94ea4156b034c51 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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); //$NON-NLS-1$
			}
		} catch (CoreException e) {
		}
	}
}

Back to the top