KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > debug > internal > core > memory > IMemoryRendering


1 /*******************************************************************************
2  * Copyright (c) 2004 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Common Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11
12
13 package org.eclipse.debug.internal.core.memory;
14
15 import org.eclipse.debug.core.model.IMemoryBlock;
16
17
18
19 /**
20  * Represent a memory rendering in Memory Rendering View
21  * @since 3.0
22  */

23 public interface IMemoryRendering
24 {
25     /**
26      * @return the memory block of this rendering.
27      */

28     public IMemoryBlock getBlock();
29
30     /**
31      * @return the rendering id of this rendering.
32      */

33     public String JavaDoc getRenderingId();
34     
35
36 }
37
Popular Tags