term = t;
Equality comparison. if (!(obj instanceof NotTerm)) return false; NotTerm nt = (NotTerm)obj; return nt.term.equals(this.term);
if (!(obj instanceof NotTerm)) return false; NotTerm nt = (NotTerm)obj; return nt.term.equals(this.term);
Return the term to negate. return term;
return term;
Compute a hashCode for this object. return term.hashCode() << 1;
return term.hashCode() << 1;
return !term.match(msg);