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()
           
 Feature Feature.getNewInstance()
           
 

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)
           
 void Feature.addFeature(int location, Feature feature)
           
 void Feature.copyContent(Feature other)
          Copies the content of another feature.
 boolean Feature.removeFeature(Feature feature)
           
 

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

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)
           
 

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)
           
 

Methods in com.ibm.rational.rpe.common.utils with parameters of type Feature
static boolean FeatureUtils.compare(Feature feature1, Feature feature2)
           
static Property PropertyUtils.findCreateProperty(Feature context, java.lang.String propname)
           
static Feature FeatureUtils.findFeature(Feature context, java.lang.String tag)
           
static java.util.List<Feature> FeatureUtils.findFeatures(Feature context, java.lang.String tag)
           
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)
           
static java.util.List<Property> PropertyUtils.findPropertiesByType(Feature context, java.lang.String type)
          Deprecated. 
static Property PropertyUtils.findProperty(Feature context, java.lang.String name)
           
static Property PropertyUtils.findPropertyDeep(Feature context, java.lang.String name)
           
static boolean PropertyUtils.hasPropertiesWithType(Feature context, java.lang.String type)
           
static boolean PropertyUtils.removeFeature(Feature context, Feature removed)
          Deprecated. 
static void FeatureUtils.removeFeatures(Feature context, java.lang.String name)
           
static boolean PropertyUtils.removeProperty(Feature context, Property property)
          Deprecated. 
static boolean PropertyUtils.removeProperty(Feature context, java.lang.String name)
           
static void PropertyUtils.setProperty(Feature context, java.lang.String propname, Value 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)
           
static boolean FeatureUtils.compareFeatures(java.util.Collection<Feature> features1, java.util.Collection<Feature> features2)
           
static void FeatureUtils.copyFromParent(java.util.List<Feature> parentFeatures, com.ibm.rational.rpe.common.template.model.FormatInfo childFormat, java.lang.String tag)