Constructorparamaddress The Address to be compared super(address);
super(address);
Equality comparison. if (!(obj instanceof FromTerm)) return false; return super.equals(obj);
if (!(obj instanceof FromTerm)) return false; return super.equals(obj);
The address comparator.parammsg The address comparison is applied to this Messagereturntrue if the comparison succeeds, otherwise false Address[] from; try { from = msg.getFrom(); } catch (Exception e) { return false; } if (from == null) return false; for (int i=0; i < from.length; i++) if (super.match(from[i])) return true; return false;
Address[] from; try { from = msg.getFrom(); } catch (Exception e) { return false; } if (from == null) return false; for (int i=0; i < from.length; i++) if (super.match(from[i])) return true; return false;