1 11 package org.eclipse.debug.internal.ui.viewers.model.provisional; 12 13 import org.eclipse.jface.util.IPropertyChangeListener; 14 15 23 public interface IPresentationContext { 24 25 29 public static final String PROPERTY_COLUMNS = "PROPERTY_COLUMNS"; 31 40 public String [] getColumns(); 41 42 47 public void addPropertyChangeListener(IPropertyChangeListener listener); 48 49 54 public void removePropertyChangeListener(IPropertyChangeListener listener); 55 56 64 public String getId(); 65 66 72 public void setProperty(String property, Object value); 73 74 81 public Object getProperty(String property); 82 83 87 public void dispose(); 88 89 } 90 | Popular Tags |