Package org.apache.abdera.ext.features.FeaturesHelper

Examples of org.apache.abdera.ext.features.FeaturesHelper.Status


            this.features.add(feature);
    }

    public boolean select(Collection collection) {
        for (String feature : features) {
            Status status = FeaturesHelper.getFeatureStatus(collection, feature);
            if (status == Status.SPECIFIED)
                return true;
        }
        return false;
    }
View Full Code Here


    for (String feature : features) this.features.add(feature);
  }
 
  public boolean select(Collection collection) {
    for (String feature : features) {
      Status status = FeaturesHelper.getFeatureStatus(collection, feature);
      if (status == Status.SPECIFIED) return true;
    }
    return false;
  }
View Full Code Here

TOP

Related Classes of org.apache.abdera.ext.features.FeaturesHelper.Status

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.