1 11 package org.eclipse.ui.internal.preferences; 12 13 import java.util.Set ; 14 15 23 public interface IPropertyMap { 24 25 34 public Set keySet(); 35 36 47 public Object getValue(String propertyId, Class propertyType); 48 49 59 public boolean isCommonProperty(String propertyId); 60 61 68 public boolean propertyExists(String propertyId); 69 70 80 public void setValue(String propertyId, Object newValue); 81 } 82 | Popular Tags |