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)
           
 Property Feature.getPropertyFast(java.lang.String name)
          In most cases the property looked for is in the first child feature Searching these locations first will result in an overall improved performance The properties cannot be sorted before searching this order is important in some scenarios Also given the small number of properties per feature there would be no real gain in doing so
 

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)
           
 void Feature.addProperty(Property property)
           
 void Feature.addPropertyAfter(Property property, Property other)
          Deprecated. 
 void Feature.addPropertyBefore(Property property, Property other)
          Deprecated. 
 boolean Feature.removeProperty(Property prop)
           
 

Method parameters in com.ibm.rational.rpe.common.data with type arguments of type Property
 void Value.addAttributes(java.util.Collection<Property> other)
           
 void Feature.addProperties(java.util.Collection<Property> properties)
           
 void Feature.sort(java.util.Comparator<Feature> featureComparator, java.util.Comparator<Property> propertyComparator, boolean deep)
           
 

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)
           
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)
           
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)
           
static Property PropertyUtils.findProperty(Feature context, java.lang.String name)
           
static Property PropertyUtils.findProperty(java.util.List<Property> properties, java.lang.String name)
           
static Property PropertyUtils.findPropertyDeep(Feature context, java.lang.String name)
           
static Property PropertyUtils.makeProperty(java.lang.String proptag, java.lang.String valtag, java.lang.String valcontent)
           
 

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)
           
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)
           
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)
           
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)
           
static boolean PropertyUtils.compareProperties(java.util.Collection<Property> properties1, java.util.Collection<Property> properties2)
           
static Property PropertyUtils.findProperty(java.util.Collection<Property> properties, java.lang.String name)
           
static Property PropertyUtils.findProperty(java.util.List<Property> properties, java.lang.String name)