1 11 12 13 package org.eclipse.debug.ui.memory; 14 15 import java.math.BigInteger ; 16 import org.eclipse.debug.core.model.IMemoryBlock; 17 import org.eclipse.debug.ui.IDebugModelPresentation; 18 19 20 35 public interface IMemoryBlockTablePresentation extends IDebugModelPresentation 36 { 37 38 48 public String [] getColumnLabels(IMemoryBlock blk, int bytesPerLine, int numColumns); 49 50 51 60 public String getRowLabel(IMemoryBlock blk, BigInteger address); 61 62 } 63 | Popular Tags |