KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > debug > internal > ui > memory > IMemoryBlockConnection


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

11 package org.eclipse.debug.internal.ui.memory;
12
13 /**
14  * Represents a connection to a memory block. An IMemoryRenderingUpdater can call
15  * a connection to update instead of relying on a rendering to listen
16  * for CHANGE / SUSPEND debug event to trigger an update.
17  *
18  * This interface is EXPERIMENTAL.
19  *
20  */

21 public interface IMemoryBlockConnection {
22     
23     /**
24      * Update the content of a memory block in a connection.
25      */

26     public void update();
27 }
28
Popular Tags