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

Packages that use Feature
com.ibm.rational.rpe.api.docspec   
com.ibm.rational.rpe.common.data   
com.ibm.rational.rpe.common.utils   
 

Uses of Feature in com.ibm.rational.rpe.api.docspec
 

Methods in com.ibm.rational.rpe.api.docspec that return Feature
 Feature DocumentSpecificationBuilder.getConfigurationForDatasource(java.lang.String configPath, java.lang.String type)
          Builds the configuration feature for the given data source type.
 

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

Methods in com.ibm.rational.rpe.common.data that return Feature
 Feature Feature.copyOf()
          Returns a copy of this feature and all of its children.
 Feature Feature.getNewInstance()
          Creates and returns a new feature instance.
 

Methods in com.ibm.rational.rpe.common.data that return types with arguments of type Feature
 java.util.List<Feature> Feature.getFeatures()
          Returns an unmodifiable collection of Features.
 

Methods in com.ibm.rational.rpe.common.data with parameters of type Feature
 void Feature.addFeature(Feature feature)
          Adds the provided feature as a direct child feature of the current feature.
 void Feature.addFeature(int location, Feature feature)
          Adds the given feature to the current feature at the given position.
 void Feature.copyContent(Feature other)
          Copies the content of the other feature to this one.
 boolean Feature.removeFeature(Feature feature)
          Removes the given feature from the children of this feature.
 

Method parameters in com.ibm.rational.rpe.common.data with type arguments of type Feature
 void Feature.addFeatures(java.util.Collection<Feature> other)
          Adds all of the features from the provided collection to this feature as direct children.
 void Feature.removeAll(java.util.Collection<Feature> deleted)
          Removes all of the features provided in the collection argument from this feature.
 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 Feature in com.ibm.rational.rpe.common.utils
 

Methods in com.ibm.rational.rpe.common.utils that return Feature
static Feature FeatureUtils.findFeature(Feature context, java.lang.String tag)
          Finds the first feature with the tag tag in the context feature.
 

Methods in com.ibm.rational.rpe.common.utils that return types with arguments of type Feature
static java.util.List<Feature> FeatureUtils.findFeatures(Feature context, java.lang.String tag)
          Finds all the features with the tag tag in the context feature.
 

Methods in com.ibm.rational.rpe.common.utils with parameters of type Feature
static boolean FeatureUtils.compare(Feature feature1, Feature feature2)
          Compares the two features that are provided as arguments.
static void FeatureUtils.copyFromParent(Feature elementFi, Feature parentFi, java.util.Collection<java.lang.String> nonInheritableProperties)
          Copies the parent properties excepting those in the notInheritableProperties list
static Property PropertyUtils.findCreateProperty(Feature context, java.lang.String propname)
          Searches the context feature for a property named propname.
static Feature FeatureUtils.findFeature(Feature context, java.lang.String tag)
          Finds the first feature with the tag tag in the context feature.
static java.util.List<Feature> FeatureUtils.findFeatures(Feature context, java.lang.String tag)
          Finds all the features with the tag tag in the context feature.
static Property PropertyUtils.findFirstProperty(Feature context, java.lang.String featurePath, java.lang.String propertyName)
          Deprecated. 
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. 
static Property PropertyUtils.findProperty(Feature context, java.lang.String name)
          Searches the context feature for a property with the given name.
static Property PropertyUtils.findPropertyDeep(Feature context, java.lang.String name)
          Searches the context feature for a property with the given name.
static boolean PropertyUtils.hasPropertiesWithType(Feature context, java.lang.String type)
          Searches the context feature for properties with the given type.
static boolean PropertyUtils.removeFeature(Feature context, Feature removed)
          Deprecated. 
static void FeatureUtils.removeFeatures(Feature context, java.lang.String tag)
          Removes from the context feature all of the features with a matching tag
static boolean PropertyUtils.removeProperty(Feature context, Property property)
          Deprecated. 
static boolean PropertyUtils.removeProperty(Feature context, java.lang.String name)
          Removes the first occurrence of a property with name name from the context feature.
static void PropertyUtils.setProperty(Feature context, java.lang.String propname, Value value)
          Searches the context feature for a property named propname and sets its value to value.
 

Method parameters in com.ibm.rational.rpe.common.utils with type arguments of type Feature
static boolean FeatureUtils.compareFeatures(java.util.Collection<Feature> features1, java.util.Collection<Feature> features2)
          Compares the two collection of features that are provided as arguments.
static boolean FeatureUtils.compareFeatures(java.util.Collection<Feature> features1, java.util.Collection<Feature> features2)
          Compares the two collection of features that are provided as arguments.
static void FeatureUtils.copyFromParent(java.util.List<Feature> parentFeatures, com.ibm.rational.rpe.common.template.model.FormatInfo childFormat, java.lang.String tag)
          Internal.