Package org.eclipse.debug.ui.memory
Interface IMemoryRenderingType
-
public interface IMemoryRenderingTypeRepresents a type of memory rendering contributed via thememoryRenderingsextension point.Clients contributing a rendering usually implement
IMemoryRenderingTypeDelegateandIMemoryRendering. Clients providing dynamic rendering bindings via anIMemoryRenderingBindingsProvidermay implement this interface.- Since:
- 3.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IMemoryRenderingcreateRendering()Creates and returns a new rendering of this type ornullif none.StringgetId()Returns the unique identifier for this rendering type.StringgetLabel()Returns a label for this type of memory rendering.
-
-
-
Method Detail
-
getLabel
String getLabel()
Returns a label for this type of memory rendering.- Returns:
- a label for this type of memory rendering
-
getId
String getId()
Returns the unique identifier for this rendering type.- Returns:
- the unique identifier for this rendering type
-
createRendering
IMemoryRendering createRendering() throws CoreException
Creates and returns a new rendering of this type ornullif none.- Returns:
- a new rendering of this type
- Throws:
CoreException- if an exception occurs creating the rendering
-
-