KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > java > net > SocketAddress


1 /*
2  * @(#)SocketAddress.java 1.6 05/11/17
3  *
4  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7 package java.net;
8
9
10 /**
11  *
12  * This class represents a Socket Address with no protocol attachment.
13  * As an abstract class, it is meant to be subclassed with a specific,
14  * protocol dependent, implementation.
15  * <p>
16  * It provides an immutable object used by sockets for binding, connecting, or
17  * as returned values.
18  *
19  * @see java.net.Socket
20  * @see java.net.ServerSocket
21  * @since 1.4
22  */

23 public abstract class SocketAddress implements java.io.Serializable JavaDoc {
24 }
25
Popular Tags