|
org.eclipse.emf.query.conditions
Class Not
java.lang.Object
org.eclipse.emf.query.conditions.Condition
org.eclipse.emf.query.conditions.Not
-
public class Not
- extends
Condition
A Condition that negates the result of evaluation of another
Condition
Constructor Summary
|
Not
(
Condition condition)
Constructor of this negating Condition
|
Method Summary
|
boolean
|
isSatisfied
(
Object object)
This operation is the evaluation operation of this Condition
in regard to the argument Object. |
Methods inherited from class java.lang.
Object
|
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait
|
Not
public Not(
Condition condition)
- Constructor of this negating
Condition
-
Parameters:
-
condition - The Condition whose evaluation result is
negated
isSatisfied
public boolean isSatisfied(
Object object)
-
Description copied from class:
Condition
- This operation is the evaluation operation of this
Condition
in regard to the argument Object. In other words, the operation answers
whether the argument Object satisfied this Condition or
not.
-
-
Specified by:
-
isSatisfied
in class
Condition
-
-
Parameters:
-
object - an Object to check if it satisfies this Condition
-
Returns:
-
true if the argument Object satisfies this
Condition ,false otherwise.
|
|