1 11 12 13 package org.eclipse.debug.internal.core.memory; 14 15 import org.eclipse.core.runtime.IConfigurationElement; 16 17 18 26 public interface IMemoryRenderingInfo 27 { 28 32 public String getName(); 33 34 37 public String getRenderingId(); 38 39 45 public String getProperty(String propertyId); 46 47 50 public IConfigurationElement getConfigElement(); 51 52 56 public IConfigurationElement getPropertyConfigElement(String propertyId); 57 58 61 public IConfigurationElement[] getAllProperties(); 62 } 63 | Popular Tags |