1 /******************************************************************************* 2 * Copyright (c) 2005, 2006 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 12 package org.eclipse.debug.ui.memory; 13 14 import org.eclipse.debug.core.DebugException; 15 16 /** 17 * A memory rendering that can be reset. Reset behavior is rendering 18 * specific. Typically, reset means that the rendering would position 19 * itself back to the base address of its memory block. However, clients 20 * may define its reset behavior that is suitable for its rendering. 21 * <p> 22 * Clients may implement this interface. 23 * </p> 24 * @since 3.2 25 * 26 */ 27 public interface IResettableMemoryRendering extends IMemoryRendering { 28 29 /** 30 * Reset this memory rendering. 31 * 32 * @throws DebugException when there is a problem resetting this memory rendering. 33 */ 34 public void resetRendering() throws DebugException; 35 36 } 37