Eclipse Platform
2.0

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.


Constructor Summary
ConfigurationPropertyModel()
          Creates a new configuration property model in which all fields are null.
 
Method Summary
 String getValue()
          Returns the value of this property.
 void setValue(String value)
          Sets the value of this property.
 
Methods inherited from class org.eclipse.core.runtime.model.PluginModelObject
assertIsWriteable, getName, isReadOnly, markReadOnly, setName
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ConfigurationPropertyModel

public ConfigurationPropertyModel()
Creates a new configuration property model in which all fields are null.

Method Detail

getValue

public String getValue()
Returns the value of this property.

Returns:
the value of this property or null

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.

Eclipse Platform
2.0

Copyright (c) IBM Corp. and others 2000, 2002. All Rights Reserved.