Searched refs:absentFeatures (Results 1 - 2 of 2) sorted by relevance

/external/guava/guava-testlib/src/com/google/common/collect/testing/features/
H A DTesterRequirements.java34 private final Set<Feature<?>> absentFeatures; field in class:TesterRequirements
37 Set<Feature<?>> presentFeatures, Set<Feature<?>> absentFeatures) {
39 this.absentFeatures = Helpers.copyToSet(absentFeatures);
56 return absentFeatures;
66 && this.absentFeatures.equals(that.absentFeatures);
72 return presentFeatures.hashCode() * 31 + absentFeatures.hashCode();
77 + presentFeatures + ", absent=" + absentFeatures + "}";
36 TesterRequirements( Set<Feature<?>> presentFeatures, Set<Feature<?>> absentFeatures) argument
H A DFeatureUtil.java221 final Feature<?>[] absentFeatures;
225 absentFeatures = (Feature[]) annotationClass.getMethod("absent")
234 addImpliedFeatures(Helpers.<Feature<?>>copyToSet(absentFeatures));
261 Set<Feature<?>> absentFeatures = requirements.getAbsentFeatures();
265 "absent", absentFeatures,
271 absentFeatures.addAll(moreAbsentFeatures);

Completed in 85 milliseconds