Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IMemoryRendering.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IMemoryRendering.java40
1 files changed, 20 insertions, 20 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IMemoryRendering.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IMemoryRendering.java
index 36c602483..b8e14e1a1 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IMemoryRendering.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/memory/IMemoryRendering.java
@@ -57,7 +57,7 @@ import org.eclipse.swt.widgets.Control;
* rendering is activated, it should set itself as the synchrnoization provider in its
* rendering site and fire property change events to communicate information to
* interested listeners.
- * </p>
+ * </p>
* <p>
* Clients contributing a memory rendering type are intended to implement this interface
* and <code>IMemoryRenderingTypeDelegate</code>. The factory will be used to create instances
@@ -66,17 +66,17 @@ import org.eclipse.swt.widgets.Control;
* @since 3.1
*/
public interface IMemoryRendering extends IAdaptable{
-
+
/**
* Initializes this rendering to be hosted in the given container, displaying
* the given memory block. This method is called before this rendering's control
* has been created.
- *
+ *
* @param container container hosting this rendering
* @param block the memory block to render
*/
public void init(IMemoryRenderingContainer container, IMemoryBlock block);
-
+
/**
* Creates the top level control for this rendering under the given parent composite.
* This method is called after this rendering's <code>init</code> method has been
@@ -99,58 +99,58 @@ public interface IMemoryRendering extends IAdaptable{
* @return the top level control or <code>null</code>
*/
public Control getControl();
-
+
/**
* Disposes this rendering.
*/
public void dispose();
-
+
/**
* Notification this rendering has become the active rendering. Only one
* rendering can be active at once. Generally, the active rendering is
* visible and has focus.
*/
public void activated();
-
+
/**
* Notification this rendering is no longer the active rendering.
*/
public void deactivated();
-
+
/**
* Notification this rendering has become visible in its container.
* Note that a rendering does not have to be active to be visible.
*/
public void becomesVisible();
-
+
/**
* Notification this rendering has become hidden in its container.
*/
public void becomesHidden();
-
+
/**
* Returns the memory block displayed by this rendering.
- *
+ *
* @return the memory block displayed by this rendering
*/
public IMemoryBlock getMemoryBlock();
-
+
/**
* Returns the identifier associated with this rendering's type.
- *
+ *
* @return the identifier associated with this rendering's type
* @see IMemoryRenderingType
*/
public String getRenderingId();
-
+
/**
* Adds a listener for property changes to this rendering.
* Has no effect if an identical listener is already registered.
- *
+ *
* @param listener a property change listener
*/
public void addPropertyChangeListener(IPropertyChangeListener listener);
-
+
/**
* Removes the given property change listener from this rendering.
* Has no effect if the identical listener is not registered.
@@ -158,19 +158,19 @@ public interface IMemoryRendering extends IAdaptable{
* @param listener a property change listener
*/
public void removePropertyChangeListener(IPropertyChangeListener listener);
-
+
/**
* Returns an image for this rendering. Clients should not dispose
* this image. This rendering will dispose the image if required when
* this rendering is disposed.
- *
+ *
* @return an image for this rendering
*/
public Image getImage();
-
+
/**
* Returns a label for this rendering.
- *
+ *
* @return a label for this rendering
*/
public String getLabel();

Back to the top