1 12 package org.eclipse.ui.views.properties; 13 14 35 public interface IPropertySource { 36 37 76 public Object getEditableValue(); 77 78 91 public IPropertyDescriptor[] getPropertyDescriptors(); 92 93 103 public Object getPropertyValue(Object id); 104 105 124 public boolean isPropertySet(Object id); 125 126 145 public void resetPropertyValue(Object id); 146 147 191 public void setPropertyValue(Object id, Object value); 192 } 193 | Popular Tags |