1999-04-07 22:42:40 +08:00
|
|
|
// SocketImplFactory.java - Abstract socket implementation factory.
|
|
|
|
|
2000-03-08 03:55:28 +08:00
|
|
|
/* Copyright (C) 1999 Free Software Foundation
|
1999-04-07 22:42:40 +08:00
|
|
|
|
|
|
|
This file is part of libgcj.
|
|
|
|
|
|
|
|
This software is copyrighted work licensed under the terms of the
|
|
|
|
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
|
|
|
package java.net;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author Per Bothner <bothner@cygnus.com>
|
|
|
|
* @date January 6, 1999.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** Written using on-line Java Platform 1.2 API Specification.
|
|
|
|
* Status: Believed complete and correct.
|
|
|
|
*/
|
|
|
|
|
|
|
|
public abstract interface SocketImplFactory
|
|
|
|
{
|
|
|
|
public SocketImpl createSocketImpl ();
|
|
|
|
}
|