Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/jres/StandardVMCommandTab.java')
-rw-r--r--org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/jres/StandardVMCommandTab.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/jres/StandardVMCommandTab.java b/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/jres/StandardVMCommandTab.java
index fc7aa224c..e4282b414 100644
--- a/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/jres/StandardVMCommandTab.java
+++ b/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/jres/StandardVMCommandTab.java
@@ -73,6 +73,7 @@ public class StandardVMCommandTab extends AbstractLaunchConfigurationTab {
fDefaultButton.setText(MessageFormat.format(JREMessages.AbstractJavaCommandTab_2, new String[]{getDefaultCommand()}));
fDefaultButton.addSelectionListener(new SelectionAdapter() {
+ @Override
public void widgetSelected(SelectionEvent evt) {
handleSelection();
}
@@ -85,6 +86,7 @@ public class StandardVMCommandTab extends AbstractLaunchConfigurationTab {
fSpecificButton.setText(JREMessages.AbstractJavaCommandTab_4);
fSpecificButton.addSelectionListener(new SelectionAdapter() {
+ @Override
public void widgetSelected(SelectionEvent evt) {
handleSelection();
}
@@ -172,6 +174,7 @@ public class StandardVMCommandTab extends AbstractLaunchConfigurationTab {
/**
* @see org.eclipse.debug.ui.AbstractLaunchConfigurationTab#getTabId()
*/
+ @Override
public String getId() {
return "org.eclipse.jdt.debug.ui.standardVMCommandTab"; //$NON-NLS-1$
}
@@ -179,6 +182,7 @@ public class StandardVMCommandTab extends AbstractLaunchConfigurationTab {
/* (non-Javadoc)
* @see org.eclipse.debug.ui.ILaunchConfigurationTab#isValid(org.eclipse.debug.core.ILaunchConfiguration)
*/
+ @Override
public boolean isValid(ILaunchConfiguration launchConfig) {
boolean valid= fDefaultButton.getSelection() || fJavaCommandText.getText().length() != 0;
if (valid) {

Back to the top