1 11 package org.eclipse.debug.core.model; 12 13 14 import org.eclipse.debug.core.DebugException; 15 16 27 public interface IRegisterGroup extends IDebugElement { 28 29 30 39 public String getName() throws DebugException; 40 41 50 public IRegister[] getRegisters() throws DebugException; 51 52 61 public boolean hasRegisters() throws DebugException; 62 63 } 64 65 | Popular Tags |