Uses of Class
com.ibm.rational.rpe.common.data.Property

Packages that use Property
com.ibm.rational.rpe.common.data   
com.ibm.rational.rpe.common.utils   
 

Uses of Property in com.ibm.rational.rpe.common.data
 

Methods in com.ibm.rational.rpe.common.data that return Property
 Property Feature.getProperty(java.lang.String name)
          Returns the property with this name if it is found as a direct child of this feature.
 Property Feature.getPropertyFast(java.lang.String name)
          Searches for a property with this name in the first child feature of the current feature.
 

Methods in com.ibm.rational.rpe.common.data that return types with arguments of type Property
 java.util.Collection<Property> Value.getAttributes()
          Returns an unmodifiable collection of properties.
 java.util.List<Property> Feature.getProperties()
          Returns an unmodifiable collection of properties.
 

Methods in com.ibm.rational.rpe.common.data with parameters of type Property
 void Value.addAttribute(Property prop)
          Adds a new property to the attribute collection
 void Feature.addProperty(Property property)
          Adds the property to this feature as a direct child property
 void Feature.addPropertyAfter(Property property, Property other)
          Deprecated. 
 void Feature.addPropertyBefore(Property property, Property other)
          Deprecated. 
 boolean Feature.removeProperty(Property prop)
          Removes the given property from this feature, if found.
 

Method parameters in com.ibm.rational.rpe.common.data with type arguments of type Property
 void Value.addAttributes(java.util.Collection<Property> other)
          Adds a list of new properties to the attribute collection
 void Feature.addProperties(java.util.Collection<Property> properties)
          Adds all of the properties from the provided collection to this feature as direct children
 void Feature.sort(java.util.Comparator<Feature> featureComparator, java.util.Comparator<Property> propertyComparator, boolean deep)
          Sorts the features and the properties of this feature by using the provided comparators.
 

Uses of Property in com.ibm.rational.rpe.common.utils
 

Methods in com.ibm.rational.rpe.common.utils that return Property
static Property PropertyUtils.clone(Property source)
          Creates a clone of the source property
static Property PropertyUtils.cloneSameValue(Property source)
          Creates a clone of this property, but assigns the same value to it
static Property PropertyUtils.findCreateProperty(Feature context, java.lang.String propname)
          Searches the context feature for a property named propname.
static Property PropertyUtils.findFirstProperty(Feature context, java.lang.String featurePath, java.lang.String propertyName)
          Deprecated. 
static Property PropertyUtils.findProperty(java.util.Collection<Property> properties, java.lang.String name)
          Searches the properties collection for a property with the given name
static Property PropertyUtils.findProperty(Feature context, java.lang.String name)
          Searches the context feature for a property with the given name.
static Property PropertyUtils.findProperty(java.util.List<Property> properties, java.lang.String name)
          Finds the property that is named name in the properties collection.
static Property PropertyUtils.findPropertyDeep(Feature context, java.lang.String name)
          Searches the context feature for a property with the given name.
static Property PropertyUtils.makeProperty(java.lang.String proptag, java.lang.String valtag, java.lang.String valcontent)
          Shortcut for creating a property with the given tag and value
 

Methods in com.ibm.rational.rpe.common.utils that return types with arguments of type Property
static java.util.List<Property> PropertyUtils.findPropertiesByName(Feature context, java.lang.String name)
          Searches the context feature for properties with the given name.
static java.util.List<Property> PropertyUtils.findPropertiesByType(Feature context, java.lang.String type)
          Deprecated. 
 

Methods in com.ibm.rational.rpe.common.utils with parameters of type Property
static Property PropertyUtils.clone(Property source)
          Creates a clone of the source property
static Property PropertyUtils.cloneSameValue(Property source)
          Creates a clone of this property, but assigns the same value to it
static boolean PropertyUtils.compareProperties(Property prop1, Property prop2)
          Compares the two properties
static java.lang.String PropertyUtils.getPropertyRawValue(Property prop, java.lang.String emptyValue)
           
static boolean PropertyUtils.removeProperty(Feature context, Property property)
          Deprecated. 
static void PropertyUtils.setPropertyValue(Property prop, Value value)
          Deprecated. 
 

Method parameters in com.ibm.rational.rpe.common.utils with type arguments of type Property
static boolean PropertyUtils.compareProperties(java.util.Collection<Property> properties1, java.util.Collection<Property> properties2)
          Compares the two property collections
static boolean PropertyUtils.compareProperties(java.util.Collection<Property> properties1, java.util.Collection<Property> properties2)
          Compares the two property collections
static Property PropertyUtils.findProperty(java.util.Collection<Property> properties, java.lang.String name)
          Searches the properties collection for a property with the given name
static Property PropertyUtils.findProperty(java.util.List<Property> properties, java.lang.String name)
          Finds the property that is named name in the properties collection.