| net.sf.jga.fn.logical.LogicalNot
LogicalNot | public class LogicalNot extends UnaryPredicate (Code) | | Unary Predicate that returns true when Boolean argument x is false.
Copyright © 2002-2005 David A. Hall
author: David A. Hall |
serialVersionUID | final static long serialVersionUID(Code) | | |
accept | public void accept(net.sf.jga.fn.Visitor v)(Code) | | Calls the Visitor's visit(LogicalNot) method, if it
implements the nested Visitor interface.
|
fn | public Boolean fn(Boolean x)(Code) | | Given Boolean argument x, returns true when x is false, false
when x is true
!x |
|
|