namespace jive { public class NotSpecification : Specification { readonly Specification item_to_match; public NotSpecification(Specification item_to_match) { this.item_to_match = item_to_match; } public bool is_satisfied_by(T item) { return !item_to_match.is_satisfied_by(item); } } }