org.eclipse.core.runtime.model
Class ConfigurationPropertyModel
java.lang.Object
|
+--org.eclipse.core.runtime.model.PluginModelObject
|
+--org.eclipse.core.runtime.model.ConfigurationPropertyModel
- public class ConfigurationPropertyModel
- extends PluginModelObject
An object which represents the user-defined properties in a configuration
element of a plug-in manifest. Properties are String
-based
key/value pairs.
This class may be instantiated, or further subclassed.
ConfigurationPropertyModel
public ConfigurationPropertyModel()
- Creates a new configuration property model in which all fields
are
null
.
getValue
public String getValue()
- Returns the value of this property.
- Returns:
- the value of this property
or
null
setLocalizedValue
public void setLocalizedValue(String value)
- Optimization to replace a non-localized key with its localized value. Avoids having
to access resource bundles for further lookups.
setValue
public void setValue(String value)
- Sets the value of this property.
This object must not be read-only.
- Parameters:
value
- the new value of this property. May be null
.
Copyright (c) IBM Corp. and others 2000, 2003. All Rights Reserved.