diff options
Diffstat (limited to 'libjava/java/net/SocketImplFactory.java')
-rw-r--r-- | libjava/java/net/SocketImplFactory.java | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/libjava/java/net/SocketImplFactory.java b/libjava/java/net/SocketImplFactory.java index f9b3f418670..fc5de7a0851 100644 --- a/libjava/java/net/SocketImplFactory.java +++ b/libjava/java/net/SocketImplFactory.java @@ -1,5 +1,5 @@ /* SocketImplFactory.java -- Interface to create a SocketImpl object - Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc. + Copyright (C) 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -43,21 +43,20 @@ package java.net; */ /** - * This interface defines one method which returns a SocketImpl object. - * This should not be needed by ordinary applications. + * This interface defines one method which returns a <code>SocketImpl</code> + * object. This should not be needed by ordinary applications. * * @author Aaron M. Renn (arenn@urbanophile.com) * @author Per Bothner <bothner@cygnus.com> */ public interface SocketImplFactory { -/** - * This method returns an instance of the SocketImpl object - * - * @return A SocketImpl object - */ -SocketImpl -createSocketImpl(); + /** + * This method returns an instance of the <code>SocketImpl</code> object + * + * @return A <code>SocketImpl</code> object + */ + public SocketImpl createSocketImpl(); } // interface SocketImplFactory |