1 11 12 13 package org.eclipse.debug.internal.ui.views.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 27 public interface IMemoryBlockModelPresentation extends IDebugModelPresentation 28 { 29 37 public String getTabLabel(IMemoryBlock blk, String renderingId); 38 39 47 public String [] getColumnLabels(IMemoryBlock blk, int bytesPerLine, int columnSize); 48 49 50 56 public String getAddressPresentation(IMemoryBlock blk, BigInteger address); 57 } 58 | Popular Tags |