Package com.google.code.javax.mail.internet

Examples of com.google.code.javax.mail.internet.InternetAddress


     * @param   a   The comparison is applied to this Address object.
     * @return          true if the match succeeds, otherwise false.
     */
    protected boolean match(Address a) {
  if (a instanceof InternetAddress) {
      InternetAddress ia = (InternetAddress)a;
      // We dont use toString() to get "a"'s String representation,
      // because InternetAddress.toString() returns a RFC 2047
      // encoded string, which isn't what we need here.

      return super.match(ia.toUnicodeString());
  } else
      return super.match(a.toString());
    }
View Full Code Here

TOP

Related Classes of com.google.code.javax.mail.internet.InternetAddress

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.