1 11 package org.eclipse.core.internal.registry; 12 13 import org.eclipse.core.internal.runtime.InternalPlatform; 14 15 23 public class ConfigurationProperty extends RegistryModelObject { 24 25 private String value = null; 27 28 32 public ConfigurationProperty() { 33 super(); 34 } 35 36 42 public String getValue() { 43 return value; 44 } 45 46 51 public void setValue(String value) { 52 this.value = value; 53 } 54 55 59 public void setLocalizedValue(String value) { 60 this.value = value; 61 ((ExtensionRegistry) InternalPlatform.getDefault().getRegistry()).setDirty(true); 62 } 63 } | Popular Tags |