1 11 12 package org.eclipse.debug.internal.ui.views.memory; 13 14 import java.math.BigInteger ; 15 import org.eclipse.debug.internal.core.memory.MemoryByte; 16 17 23 public class EmptyRenderer extends AbstractMemoryRenderer { 24 25 28 public String getString( 29 String dataType, 30 BigInteger address, 31 MemoryByte[] data, String paddedStr) { 32 33 return ""; } 35 36 39 public byte[] getBytes( 40 String dataType, 41 BigInteger address, 42 MemoryByte[] currentValues, 43 String data) { 44 45 return new byte[0]; 46 } 47 } 48 | Popular Tags |