Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/variables/details/MessageDetailPane.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/variables/details/MessageDetailPane.java24
1 files changed, 0 insertions, 24 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/variables/details/MessageDetailPane.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/variables/details/MessageDetailPane.java
index 81039a7cc..e6ce5f871 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/variables/details/MessageDetailPane.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/variables/details/MessageDetailPane.java
@@ -46,24 +46,15 @@ public class MessageDetailPane implements IDetailPane {
*/
private Label fLabel;
- /* (non-Javadoc)
- * @see org.eclipse.debug.ui.IDetailPane#init(org.eclipse.ui.IWorkbenchPartSite)
- */
@Override
public void init(IWorkbenchPartSite partSite) {
}
- /* (non-Javadoc)
- * @see org.eclipse.debug.ui.IDetailPane#dispose()
- */
@Override
public void dispose() {
fControlParent.dispose();
}
- /* (non-Javadoc)
- * @see org.eclipse.debug.ui.IDetailPane#createControl(org.eclipse.swt.widgets.Composite)
- */
@Override
public Control createControl(Composite parent) {
fControlParent = SWTFactory.createComposite(parent, 1, 1, GridData.FILL_BOTH);
@@ -72,17 +63,11 @@ public class MessageDetailPane implements IDetailPane {
return fControlParent;
}
- /* (non-Javadoc)
- * @see org.eclipse.debug.ui.IDetailPane#setFocus()
- */
@Override
public boolean setFocus() {
return false;
}
- /* (non-Javadoc)
- * @see org.eclipse.debug.ui.IDetailPane#display(org.eclipse.jface.viewers.IStructuredSelection)
- */
@Override
public void display(IStructuredSelection selection) {
// re-create controls if the layout has changed
@@ -100,25 +85,16 @@ public class MessageDetailPane implements IDetailPane {
}
}
- /* (non-Javadoc)
- * @see org.eclipse.debug.ui.IDetailPane#getID()
- */
@Override
public String getID() {
return ID;
}
- /* (non-Javadoc)
- * @see org.eclipse.debug.ui.IDetailPane#getName()
- */
@Override
public String getName() {
return NAME;
}
- /* (non-Javadoc)
- * @see org.eclipse.debug.ui.IDetailPane#getDescription()
- */
@Override
public String getDescription() {
return DESCRIPTION;

Back to the top