Rename Devtools -> DevTools
This commit is contained in:
@@ -45,10 +45,10 @@
|
||||
|
||||
<shortcut
|
||||
class="org.springframework.ide.eclipse.boot.launch.devtools.BootDevtoolsClientLaunchShortcut"
|
||||
description="Connect Spring Devtools Client to a Remote Spring Boot Application"
|
||||
description="Connect Spring DevTools Client to a Remote Spring Boot Application"
|
||||
id="org.springframework.ide.eclipse.boot.launch.devtools.BootDevtoolsClientLaunchShortcut"
|
||||
icon="platform:/plugin/org.springframework.ide.eclipse.boot/resources/icons/boot-devtools-icon.png"
|
||||
label="Spring Devtools Client"
|
||||
label="Spring DevTools Client"
|
||||
modes="run, debug">
|
||||
<contextualLaunch>
|
||||
<enablement>
|
||||
@@ -64,11 +64,11 @@
|
||||
id="org.springframework.ide.eclipse.boot.devtools.client.launch">
|
||||
</configurationType>
|
||||
<description
|
||||
description="Run as Spring Devtools Client"
|
||||
description="Run as Spring DevTools Client"
|
||||
mode="run">
|
||||
</description>
|
||||
<description
|
||||
description="Debug as Spring Devtools Client"
|
||||
description="Debug as Spring DevTools Client"
|
||||
mode="debug">
|
||||
</description>
|
||||
</shortcut>
|
||||
@@ -93,7 +93,7 @@
|
||||
</launchConfigurationType>
|
||||
<launchConfigurationType
|
||||
id="org.springframework.ide.eclipse.boot.devtools.client.launch"
|
||||
name="Spring Boot Devtools Client"
|
||||
name="Spring Boot DevTools Client"
|
||||
delegate="org.springframework.ide.eclipse.boot.launch.devtools.BootDevtoolsClientLaunchConfigurationDelegate"
|
||||
modes="run,debug"
|
||||
sourceLocatorId="org.eclipse.jdt.launching.sourceLocator.JavaSourceLookupDirector"
|
||||
|
||||
@@ -96,7 +96,7 @@ public class BootDevtoolsClientLaunchConfigurationDelegate extends AbstractBootL
|
||||
throws CoreException {
|
||||
boolean isDebug = ILaunchManager.DEBUG_MODE.equals(mode);
|
||||
int work = isDebug ? 2 : 1;
|
||||
mon.beginTask("Launching Devtools Client for"+getProjectName(conf), work);
|
||||
mon.beginTask("Launching DevTools Client for"+getProjectName(conf), work);
|
||||
if (isDebug) {
|
||||
localDebugPort.set(findFreePort());
|
||||
}
|
||||
|
||||
@@ -127,7 +127,7 @@ public class BootDevtoolsClientLaunchShortcut implements ILaunchShortcut {
|
||||
IDebugModelPresentation labelProvider = DebugUITools.newDebugModelPresentation();
|
||||
ElementListSelectionDialog dialog= new ElementListSelectionDialog(getShell(), labelProvider);
|
||||
dialog.setElements(configList.toArray());
|
||||
dialog.setTitle("Several Devtools Client Configs found for "+project.getName());
|
||||
dialog.setTitle("Several DevTools Client Configs found for "+project.getName());
|
||||
dialog.setMessage("Select an existing configuration");
|
||||
dialog.setMultipleSelection(false);
|
||||
int result = dialog.open();
|
||||
|
||||
@@ -29,7 +29,7 @@ public class BootDevtoolsClientMainTab extends LaunchConfigurationTabWithSection
|
||||
|
||||
@Override
|
||||
public String getName() {
|
||||
return "Devtools Client";
|
||||
return "DevTools Client";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user