org.gradle.api.specs
Class NotSpec<T>

java.lang.Object
  extended by org.gradle.api.specs.NotSpec<T>
Type Parameters:
T - The target type for this Spec
All Implemented Interfaces:
Spec<T>

public class NotSpec<T>
extends Object
implements Spec<T>

A Spec implementation which negates another Spec.


Constructor Summary
NotSpec(Spec<? super T> sourceSpec)
           
 
Method Summary
 boolean isSatisfiedBy(T element)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NotSpec

public NotSpec(Spec<? super T> sourceSpec)
Method Detail

isSatisfiedBy

public boolean isSatisfiedBy(T element)
Specified by:
isSatisfiedBy in interface Spec<T>