1. /*
  2. * @(#)SocketAddress.java 1.4 03/01/23
  3. *
  4. * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package java.net;
  8. /**
  9. *
  10. * This class represents a Socket Address with no protocol attachment.
  11. * As an abstract class, it is meant to be subclassed with a specific,
  12. * protocol dependent, implementation.
  13. * <p>
  14. * It provides an immutable object used by sockets for binding, connecting, or
  15. * as returned values.
  16. *
  17. * @see java.net.Socket
  18. * @see java.net.ServerSocket
  19. * @since 1.4
  20. */
  21. public abstract class SocketAddress implements java.io.Serializable {
  22. }