01: package org.drools.eclipse.launching;
02:
03: import org.drools.eclipse.debug.core.IDroolsDebugConstants;
04: import org.eclipse.debug.core.ILaunchConfigurationType;
05: import org.eclipse.jdt.internal.debug.ui.launcher.JavaApplicationLaunchShortcut;
06:
07: public class DroolsApplicationLaunchShortcut extends
08: JavaApplicationLaunchShortcut {
09:
10: protected ILaunchConfigurationType getConfigurationType() {
11: return getLaunchManager().getLaunchConfigurationType(
12: IDroolsDebugConstants.LAUNCH_CONFIGURATION_TYPE);
13: }
14:
15: protected String getTypeSelectionTitle() {
16: return "Select Drools Application";
17: }
18:
19: }
|