1 11 package org.eclipse.core.runtime.model; 12 13 24 public class ConfigurationPropertyModel extends PluginModelObject { 25 26 private String value = null; 28 29 33 public ConfigurationPropertyModel() { 34 super(); 35 } 36 37 42 public String getValue() { 43 return value; 44 } 45 46 52 public void setLocalizedValue(String value) { 53 this.value = value; 54 } 55 56 61 public void setValue(String value) { 62 assertIsWriteable(); 63 this.value = value; 64 } 65 } 66 | Popular Tags |