mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 06:32:10 +02:00
Provide helper method to get rid of annoying warnings.
This commit is contained in:
parent
487fbb51cb
commit
e55d0449e2
7 changed files with 70 additions and 4 deletions
|
@ -22,12 +22,13 @@ import org.eclipse.swt.widgets.Button;
|
|||
import org.eclipse.swt.widgets.Composite;
|
||||
import org.eclipse.swt.widgets.FileDialog;
|
||||
import org.eclipse.swt.widgets.Label;
|
||||
import org.eclipse.swt.widgets.Shell;
|
||||
import org.eclipse.swt.widgets.Text;
|
||||
|
||||
public class CygwinDebuggerPage extends AbstractLaunchConfigurationTab {
|
||||
|
||||
private Text fGDBCommandText;
|
||||
private Text fGDBInitText;
|
||||
protected Text fGDBCommandText;
|
||||
protected Text fGDBInitText;
|
||||
private Button fGDBButton;
|
||||
|
||||
public void createControl(Composite parent) {
|
||||
|
@ -182,4 +183,19 @@ public class CygwinDebuggerPage extends AbstractLaunchConfigurationTab {
|
|||
public String getName() {
|
||||
return "Cygwin GDB Debugger Options";
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.debug.ui.AbstractLaunchConfigurationTab#updateLaunchConfigurationDialog()
|
||||
*/
|
||||
protected void updateLaunchConfigurationDialog() {
|
||||
super.updateLaunchConfigurationDialog();
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.debug.ui.AbstractLaunchConfigurationTab#getShell()
|
||||
*/
|
||||
protected Shell getShell() {
|
||||
return super.getShell();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -22,12 +22,13 @@ import org.eclipse.swt.widgets.Button;
|
|||
import org.eclipse.swt.widgets.Composite;
|
||||
import org.eclipse.swt.widgets.FileDialog;
|
||||
import org.eclipse.swt.widgets.Label;
|
||||
import org.eclipse.swt.widgets.Shell;
|
||||
import org.eclipse.swt.widgets.Text;
|
||||
|
||||
public class GDBDebuggerPage extends AbstractLaunchConfigurationTab {
|
||||
|
||||
private Text fGDBCommandText;
|
||||
private Text fGDBInitText;
|
||||
protected Text fGDBCommandText;
|
||||
protected Text fGDBInitText;
|
||||
private Button fAutoSoLibButton;
|
||||
private Button fGDBButton;
|
||||
|
||||
|
@ -195,4 +196,18 @@ public class GDBDebuggerPage extends AbstractLaunchConfigurationTab {
|
|||
public String getName() {
|
||||
return "GDB Debugger Options";
|
||||
}
|
||||
/**
|
||||
* @see org.eclipse.debug.ui.AbstractLaunchConfigurationTab#getShell()
|
||||
*/
|
||||
protected Shell getShell() {
|
||||
return super.getShell();
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.debug.ui.AbstractLaunchConfigurationTab#updateLaunchConfigurationDialog()
|
||||
*/
|
||||
protected void updateLaunchConfigurationDialog() {
|
||||
super.updateLaunchConfigurationDialog();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -406,5 +406,12 @@ public class WorkingDirectoryBlock extends AbstractLaunchConfigurationTab {
|
|||
return fLaunchConfiguration;
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.debug.ui.AbstractLaunchConfigurationTab#updateLaunchConfigurationDialog()
|
||||
*/
|
||||
protected void updateLaunchConfigurationDialog() {
|
||||
super.updateLaunchConfigurationDialog();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -172,4 +172,11 @@ public class CArgumentsTab extends CLaunchConfigurationTab {
|
|||
return LaunchImages.get(LaunchImages.IMG_VIEW_ARGUMENTS_TAB);
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.debug.ui.AbstractLaunchConfigurationTab#updateLaunchConfigurationDialog()
|
||||
*/
|
||||
protected void updateLaunchConfigurationDialog() {
|
||||
super.updateLaunchConfigurationDialog();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -282,4 +282,11 @@ public class CDebuggerTab extends AbstractCDebuggerTab {
|
|||
public Image getImage() {
|
||||
return LaunchImages.get(LaunchImages.IMG_VIEW_DEBUGGER_TAB);
|
||||
}
|
||||
/**
|
||||
* @see org.eclipse.debug.ui.AbstractLaunchConfigurationTab#updateLaunchConfigurationDialog()
|
||||
*/
|
||||
protected void updateLaunchConfigurationDialog() {
|
||||
super.updateLaunchConfigurationDialog();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -399,4 +399,11 @@ public class CMainTab extends CLaunchConfigurationTab {
|
|||
return LaunchImages.get(LaunchImages.IMG_VIEW_MAIN_TAB);
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.debug.ui.AbstractLaunchConfigurationTab#updateLaunchConfigurationDialog()
|
||||
*/
|
||||
protected void updateLaunchConfigurationDialog() {
|
||||
super.updateLaunchConfigurationDialog();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -181,4 +181,11 @@ public class CorefileDebuggerTab extends AbstractCDebuggerTab {
|
|||
return "Debugger";
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.cdt.launch.internal.ui.AbstractCDebuggerTab#handleDebuggerChanged()
|
||||
*/
|
||||
protected void handleDebuggerChanged() {
|
||||
super.handleDebuggerChanged();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue