1. /*
  2. * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
  3. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  4. */
  5. package javax.mail.event;
  6. /**
  7. * The adapter which receives MessageCount events.
  8. * The methods in this class are empty; this class is provided as a
  9. * convenience for easily creating listeners by extending this class
  10. * and overriding only the methods of interest.
  11. *
  12. * @author John Mani
  13. */
  14. public abstract class MessageCountAdapter implements MessageCountListener {
  15. public void messagesAdded(MessageCountEvent e) {}
  16. public void messagesRemoved(MessageCountEvent e) {}
  17. }