summaryrefslogtreecommitdiff
path: root/libjava/doc/java-net.texi
diff options
context:
space:
mode:
authorgreen <green@138bc75d-0d04-0410-961f-82ee72b054a4>2001-01-08 00:27:51 +0000
committergreen <green@138bc75d-0d04-0410-961f-82ee72b054a4>2001-01-08 00:27:51 +0000
commit9ca3c224d830e3b014bc036414d4b9a1af717dcd (patch)
treee6058c157f2a58ea1d1cadda719e0332b688b0ae /libjava/doc/java-net.texi
parent96df8b7778427c0dba34c27172a73f1d15945281 (diff)
downloadgcc-9ca3c224d830e3b014bc036414d4b9a1af717dcd.tar.gz
001-01-07 Anthony Green <green@redhat.com>
* Makefile.am (texinfo): Add texinfo target for generating texinfo documentation. * Makefile.in: Rebuilt. * scripts/TexinfoDoclet.java: New file. * doc/java-applet.texi, doc/java-lang-reflect.texi, doc/java-awt-color.texi, doc/java-lang.texi, doc/java-awt-datatransfer.texi, doc/java-math.texi, doc/java-awt-event.texi, doc/java-net.texi, doc/java-awt-geom.texi, doc/java-security-spec.texi, doc/java-awt-image.texi, doc/java-security.texi, doc/java-awt-peer.texi, doc/java-sql.texi, doc/java-awt.texi, doc/java-text.texi, doc/java-beans-beancontext.texi, doc/java-util-jar.texi, doc/java-beans.texi, doc/java-util-zip.texi, doc/java-io.texi, doc/java-util.texi, doc/java-lang-ref.texi: New files. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38789 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/doc/java-net.texi')
-rw-r--r--libjava/doc/java-net.texi558
1 files changed, 558 insertions, 0 deletions
diff --git a/libjava/doc/java-net.texi b/libjava/doc/java-net.texi
new file mode 100644
index 00000000000..0d172b9c690
--- /dev/null
+++ b/libjava/doc/java-net.texi
@@ -0,0 +1,558 @@
+@deftypemethod ContentHandlerFactory {public ContentHandler} createContentHandler (java.lang.String@w{ }@var{mimetype})
+
+@end deftypemethod
+@deftypemethod ContentHandler {public abstract Object} getContent (java.net.URLConnection@w{ }@var{urlc}) @*throws IOException
+
+@end deftypemethod
+@deftypemethod DatagramPacket {public synchronized InetAddress} getAddress ()
+
+@end deftypemethod
+@deftypemethod DatagramPacket {public synchronized int} getPort ()
+
+@end deftypemethod
+@deftypemethod DatagramPacket {public synchronized byte} getData ()
+
+@end deftypemethod
+@deftypemethod DatagramPacket {public synchronized int} getOffset ()
+
+@end deftypemethod
+@deftypemethod DatagramPacket {public synchronized int} getLength ()
+
+@end deftypemethod
+@deftypemethod DatagramPacket {public synchronized void} setAddress (java.net.InetAddress@w{ }@var{iaddr})
+
+@end deftypemethod
+@deftypemethod DatagramPacket {public synchronized void} setPort (int@w{ }@var{iport})
+
+@end deftypemethod
+@deftypemethod DatagramPacket {public synchronized void} setData (byte[]@w{ }@var{buf})
+
+@end deftypemethod
+@deftypemethod DatagramPacket {public synchronized void} setData (byte[]@w{ }@var{buf}, int@w{ }@var{offset}, int@w{ }@var{length})
+
+@end deftypemethod
+@deftypemethod DatagramPacket {public synchronized void} setLength (int@w{ }@var{length})
+
+@end deftypemethod
+@deftypemethod DatagramSocketImpl {protected abstract void} bind (int@w{ }@var{lport}, java.net.InetAddress@w{ }@var{laddr}) @*throws SocketException
+
+@end deftypemethod
+@deftypemethod DatagramSocketImpl {protected abstract void} close ()
+
+@end deftypemethod
+@deftypemethod DatagramSocketImpl {protected abstract void} create () @*throws SocketException
+
+@end deftypemethod
+@deftypemethod DatagramSocketImpl {protected abstract int} peek (java.net.InetAddress@w{ }@var{i}) @*throws IOException
+
+@end deftypemethod
+@deftypemethod DatagramSocketImpl {protected abstract void} send (java.net.DatagramPacket@w{ }@var{p}) @*throws IOException
+
+@end deftypemethod
+@deftypemethod DatagramSocketImpl {protected abstract void} receive (java.net.DatagramPacket@w{ }@var{p}) @*throws IOException
+
+@end deftypemethod
+@deftypemethod DatagramSocketImpl {protected abstract void} setTTL (byte@w{ }@var{ttl}) @*throws IOException
+
+@end deftypemethod
+@deftypemethod DatagramSocketImpl {protected abstract byte} getTTL () @*throws IOException
+
+@end deftypemethod
+@deftypemethod DatagramSocketImpl {protected abstract void} setTimeToLive (int@w{ }@var{ttl}) @*throws IOException
+
+@end deftypemethod
+@deftypemethod DatagramSocketImpl {protected abstract int} getTimeToLive () @*throws IOException
+
+@end deftypemethod
+@deftypemethod DatagramSocketImpl {protected abstract void} join (java.net.InetAddress@w{ }@var{inetaddr}) @*throws IOException
+
+@end deftypemethod
+@deftypemethod DatagramSocketImpl {protected abstract void} leave (java.net.InetAddress@w{ }@var{inetaddr}) @*throws IOException
+
+@end deftypemethod
+@deftypemethod DatagramSocketImpl {public abstract Object} getOption (int@w{ }@var{optID}) @*throws SocketException
+
+@end deftypemethod
+@deftypemethod DatagramSocketImpl {public abstract void} setOption (int@w{ }@var{optID}, java.lang.Object@w{ }@var{value}) @*throws SocketException
+
+@end deftypemethod
+@deftypemethod DatagramSocketImpl {protected FileDescriptor} getFileDescriptor ()
+
+@end deftypemethod
+@deftypemethod DatagramSocketImpl {protected int} getLocalPort ()
+
+@end deftypemethod
+@deftypemethod DatagramSocket {public void} close ()
+
+@end deftypemethod
+@deftypemethod DatagramSocket {public InetAddress} getLocalAddress ()
+
+@end deftypemethod
+@deftypemethod DatagramSocket {public int} getLocalPort ()
+
+@end deftypemethod
+@deftypemethod DatagramSocket {public synchronized int} getSoTimeout () @*throws SocketException
+
+@end deftypemethod
+@deftypemethod DatagramSocket {public synchronized void} receive (java.net.DatagramPacket@w{ }@var{p}) @*throws IOException
+
+@end deftypemethod
+@deftypemethod DatagramSocket {public void} send (java.net.DatagramPacket@w{ }@var{p}) @*throws IOException
+
+@end deftypemethod
+@deftypemethod DatagramSocket {public synchronized void} setSoTimeout (int@w{ }@var{timeout}) @*throws SocketException
+
+@end deftypemethod
+@deftypemethod FileNameMap {public String} getContentTypeFor (java.lang.String@w{ }@var{fileName})
+
+@end deftypemethod
+@deftypemethod HttpURLConnection {public abstract void} disconnect ()
+
+@end deftypemethod
+@deftypemethod HttpURLConnection {public abstract boolean} usingProxy ()
+
+@end deftypemethod
+@deftypemethod HttpURLConnection {public static void} setFollowRedirects (boolean@w{ }@var{set})
+
+@end deftypemethod
+@deftypemethod HttpURLConnection {public static boolean} getFollowRedirects ()
+
+@end deftypemethod
+@deftypemethod HttpURLConnection {public void} setRequestMethod (java.lang.String@w{ }@var{method}) @*throws ProtocolException
+
+@end deftypemethod
+@deftypemethod HttpURLConnection {public String} getRequestMethod ()
+
+@end deftypemethod
+@deftypemethod HttpURLConnection {public int} getResponseCode () @*throws IOException
+
+@end deftypemethod
+@deftypemethod HttpURLConnection {public String} getResponseMessage () @*throws IOException
+
+@end deftypemethod
+@deftypemethod InetAddress {public boolean} isMulticastAddress ()
+
+@end deftypemethod
+@deftypemethod InetAddress {public String} getHostName ()
+
+@end deftypemethod
+@deftypemethod InetAddress {public byte} getAddress ()
+
+@end deftypemethod
+@deftypemethod InetAddress {public String} getHostAddress ()
+
+@end deftypemethod
+@deftypemethod InetAddress {public int} hashCode ()
+
+@end deftypemethod
+@deftypemethod InetAddress {public boolean} equals (java.lang.Object@w{ }@var{obj})
+
+@end deftypemethod
+@deftypemethod InetAddress {public String} toString ()
+
+@end deftypemethod
+@deftypemethod InetAddress {public static InetAddress} getByName (java.lang.String@w{ }@var{host}) @*throws UnknownHostException
+
+@end deftypemethod
+@deftypemethod InetAddress {public static InetAddress} getAllByName (java.lang.String@w{ }@var{host}) @*throws UnknownHostException
+
+@end deftypemethod
+@deftypemethod InetAddress {public static InetAddress} getLocalHost () @*throws UnknownHostException
+
+@end deftypemethod
+@deftypemethod JarURLConnection {public URL} getJarFileURL ()
+
+@end deftypemethod
+@deftypemethod JarURLConnection {public String} getEntryName ()
+
+@end deftypemethod
+@deftypemethod JarURLConnection {public synchronized void} connect () @*throws IOException
+
+@end deftypemethod
+@deftypemethod JarURLConnection {public InputStream} getInputStream () @*throws IOException
+
+@end deftypemethod
+@deftypemethod JarURLConnection {public JarEntry} getJarEntry () @*throws IOException
+
+@end deftypemethod
+@deftypemethod JarURLConnection {public abstract JarFile} getJarFile () @*throws IOException
+
+@end deftypemethod
+@deftypemethod JarURLConnection {public String} getHeaderField (java.lang.String@w{ }@var{name})
+
+@end deftypemethod
+@deftypemethod JarURLConnection {public String} getHeaderField (int@w{ }@var{n})
+
+@end deftypemethod
+@deftypemethod JarURLConnection {public String} getHeaderFieldKey (int@w{ }@var{n})
+
+@end deftypemethod
+@deftypemethod MulticastSocket {public InetAddress} getInterface () @*throws SocketException
+
+@end deftypemethod
+@deftypemethod MulticastSocket {public byte} getTTL () @*throws IOException
+
+@end deftypemethod
+@deftypemethod MulticastSocket {public int} getTimeToLive () @*throws IOException
+
+@end deftypemethod
+@deftypemethod MulticastSocket {public void} setInterface (java.net.InetAddress@w{ }@var{inf}) @*throws SocketException
+
+@end deftypemethod
+@deftypemethod MulticastSocket {public void} setTTL (byte@w{ }@var{ttl}) @*throws IOException
+
+@end deftypemethod
+@deftypemethod MulticastSocket {public void} setTimeToLive (int@w{ }@var{ttl}) @*throws IOException
+
+@end deftypemethod
+@deftypemethod MulticastSocket {public void} joinGroup (java.net.InetAddress@w{ }@var{mcastaddr}) @*throws IOException
+
+@end deftypemethod
+@deftypemethod MulticastSocket {public void} leaveGroup (java.net.InetAddress@w{ }@var{mcastaddr}) @*throws IOException
+
+@end deftypemethod
+@deftypemethod MulticastSocket {public synchronized void} send (java.net.DatagramPacket@w{ }@var{p}, byte@w{ }@var{ttl}) @*throws IOException
+
+@end deftypemethod
+@deftypemethod ServerSocket {public InetAddress} getInetAddress ()
+
+@end deftypemethod
+@deftypemethod ServerSocket {public int} getLocalPort ()
+
+@end deftypemethod
+@deftypemethod ServerSocket {public Socket} accept () @*throws IOException
+
+@end deftypemethod
+@deftypemethod ServerSocket {protected final void} implAccept (java.net.Socket@w{ }@var{s}) @*throws IOException
+
+@end deftypemethod
+@deftypemethod ServerSocket {public void} close () @*throws IOException
+
+@end deftypemethod
+@deftypemethod ServerSocket {public synchronized void} setSoTimeout (int@w{ }@var{timeout}) @*throws SocketException
+
+@end deftypemethod
+@deftypemethod ServerSocket {public synchronized int} getSoTimeout () @*throws SocketException
+
+@end deftypemethod
+@deftypemethod ServerSocket {public String} toString ()
+
+@end deftypemethod
+@deftypemethod ServerSocket {public static synchronized void} setSocketFactory (java.net.SocketImplFactory@w{ }@var{fac}) @*throws IOException
+
+@end deftypemethod
+@deftypemethod SocketImplFactory {public SocketImpl} createSocketImpl ()
+
+@end deftypemethod
+@deftypemethod SocketImpl {protected abstract void} create (boolean@w{ }@var{stream}) @*throws IOException
+
+@end deftypemethod
+@deftypemethod SocketImpl {protected abstract void} connect (java.lang.String@w{ }@var{host}, int@w{ }@var{port}) @*throws IOException
+
+@end deftypemethod
+@deftypemethod SocketImpl {protected abstract void} connect (java.net.InetAddress@w{ }@var{host}, int@w{ }@var{port}) @*throws IOException
+
+@end deftypemethod
+@deftypemethod SocketImpl {protected abstract void} bind (java.net.InetAddress@w{ }@var{host}, int@w{ }@var{port}) @*throws IOException
+
+@end deftypemethod
+@deftypemethod SocketImpl {protected abstract void} listen (int@w{ }@var{backlog}) @*throws IOException
+
+@end deftypemethod
+@deftypemethod SocketImpl {protected abstract void} accept (java.net.SocketImpl@w{ }@var{s}) @*throws IOException
+
+@end deftypemethod
+@deftypemethod SocketImpl {protected abstract InputStream} getInputStream () @*throws IOException
+
+@end deftypemethod
+@deftypemethod SocketImpl {protected abstract OutputStream} getOutputStream () @*throws IOException
+
+@end deftypemethod
+@deftypemethod SocketImpl {protected abstract int} available () @*throws IOException
+
+@end deftypemethod
+@deftypemethod SocketImpl {protected abstract void} close () @*throws IOException
+
+@end deftypemethod
+@deftypemethod SocketImpl {protected FileDescriptor} getFileDescriptor ()
+
+@end deftypemethod
+@deftypemethod SocketImpl {protected InetAddress} getInetAddress ()
+
+@end deftypemethod
+@deftypemethod SocketImpl {protected int} getPort ()
+
+@end deftypemethod
+@deftypemethod SocketImpl {protected int} getLocalPort ()
+
+@end deftypemethod
+@deftypemethod SocketImpl {public abstract Object} getOption (int@w{ }@var{optID}) @*throws SocketException
+
+@end deftypemethod
+@deftypemethod SocketImpl {public abstract void} setOption (int@w{ }@var{optID}, java.lang.Object@w{ }@var{value}) @*throws SocketException
+
+@end deftypemethod
+@deftypemethod SocketImpl {public String} toString ()
+
+@end deftypemethod
+@deftypemethod Socket {public InetAddress} getInetAddress ()
+
+@end deftypemethod
+@deftypemethod Socket {public InetAddress} getLocalAddress ()
+
+@end deftypemethod
+@deftypemethod Socket {public int} getPort ()
+
+@end deftypemethod
+@deftypemethod Socket {public int} getLocalPort ()
+
+@end deftypemethod
+@deftypemethod Socket {public InputStream} getInputStream () @*throws IOException
+
+@end deftypemethod
+@deftypemethod Socket {public OutputStream} getOutputStream () @*throws IOException
+
+@end deftypemethod
+@deftypemethod Socket {public void} setTcpNoDelay (boolean@w{ }@var{on}) @*throws SocketException
+
+@end deftypemethod
+@deftypemethod Socket {public boolean} getTcpNoDelay () @*throws SocketException
+
+@end deftypemethod
+@deftypemethod Socket {public void} setSoLinger (boolean@w{ }@var{on}, int@w{ }@var{linger}) @*throws SocketException
+
+@end deftypemethod
+@deftypemethod Socket {public int} getSoLinger () @*throws SocketException
+
+@end deftypemethod
+@deftypemethod Socket {public synchronized void} setSoTimeout (int@w{ }@var{timeout}) @*throws SocketException
+
+@end deftypemethod
+@deftypemethod Socket {public synchronized int} getSoTimeout () @*throws SocketException
+
+@end deftypemethod
+@deftypemethod Socket {public void} setSendBufferSize (int@w{ }@var{size}) @*throws SocketException
+
+@end deftypemethod
+@deftypemethod Socket {public int} getSendBufferSize () @*throws SocketException
+
+@end deftypemethod
+@deftypemethod Socket {public void} setReceiveBufferSize (int@w{ }@var{size}) @*throws SocketException
+
+@end deftypemethod
+@deftypemethod Socket {public int} getReceiveBufferSize () @*throws SocketException
+
+@end deftypemethod
+@deftypemethod Socket {public synchronized void} close () @*throws IOException
+
+@end deftypemethod
+@deftypemethod Socket {public String} toString ()
+
+@end deftypemethod
+@deftypemethod Socket {public static synchronized void} setSocketImplFactory (java.net.SocketImplFactory@w{ }@var{fac}) @*throws IOException
+
+@end deftypemethod
+@deftypemethod SocketOptions {public void} setOption (int@w{ }@var{optID}, java.lang.Object@w{ }@var{value}) @*throws SocketException
+
+@end deftypemethod
+@deftypemethod SocketOptions {public Object} getOption (int@w{ }@var{optID}) @*throws SocketException
+
+@end deftypemethod
+@deftypemethod URLClassLoader {protected void} addURL (java.net.URL@w{ }@var{url})
+
+@end deftypemethod
+@deftypemethod URLClassLoader {public URL} getURLs ()
+
+@end deftypemethod
+@deftypemethod URLClassLoader {public Enumeration} findResources (java.lang.String@w{ }@var{name})
+
+@end deftypemethod
+@deftypemethod URLClassLoader {public URL} findResource (java.lang.String@w{ }@var{name})
+
+@end deftypemethod
+@deftypemethod URLClassLoader {protected Class} findClass (java.lang.String@w{ }@var{name}) @*throws ClassNotFoundException
+
+@end deftypemethod
+@deftypemethod URLConnection {public abstract void} connect () @*throws IOException
+
+@end deftypemethod
+@deftypemethod URLConnection {public URL} getURL ()
+
+@end deftypemethod
+@deftypemethod URLConnection {public int} getContentLength ()
+
+@end deftypemethod
+@deftypemethod URLConnection {public String} getContentType ()
+
+@end deftypemethod
+@deftypemethod URLConnection {public String} getContentEncoding ()
+
+@end deftypemethod
+@deftypemethod URLConnection {public long} getExpiration ()
+
+@end deftypemethod
+@deftypemethod URLConnection {public long} getDate ()
+
+@end deftypemethod
+@deftypemethod URLConnection {public long} getLastModified ()
+
+@end deftypemethod
+@deftypemethod URLConnection {public String} getHeaderField (int@w{ }@var{n})
+
+@end deftypemethod
+@deftypemethod URLConnection {public String} getHeaderField (java.lang.String@w{ }@var{name})
+
+@end deftypemethod
+@deftypemethod URLConnection {public int} getHeaderFieldInt (java.lang.String@w{ }@var{name}, int@w{ }@var{val})
+
+@end deftypemethod
+@deftypemethod URLConnection {public long} getHeaderFieldDate (java.lang.String@w{ }@var{name}, long@w{ }@var{val})
+
+@end deftypemethod
+@deftypemethod URLConnection {public String} getHeaderFieldKey (int@w{ }@var{n})
+
+@end deftypemethod
+@deftypemethod URLConnection {public Object} getContent () @*throws IOException
+
+@end deftypemethod
+@deftypemethod URLConnection {public InputStream} getInputStream () @*throws IOException
+
+@end deftypemethod
+@deftypemethod URLConnection {public OutputStream} getOutputStream () @*throws IOException
+
+@end deftypemethod
+@deftypemethod URLConnection {public String} toString ()
+
+@end deftypemethod
+@deftypemethod URLConnection {public void} setDoInput (boolean@w{ }@var{doinput})
+
+@end deftypemethod
+@deftypemethod URLConnection {public boolean} getDoInput ()
+
+@end deftypemethod
+@deftypemethod URLConnection {public void} setDoOutput (boolean@w{ }@var{dooutput})
+
+@end deftypemethod
+@deftypemethod URLConnection {public boolean} getDoOutput ()
+
+@end deftypemethod
+@deftypemethod URLConnection {public void} setAllowUserInteraction (boolean@w{ }@var{allowuserinteraction})
+
+@end deftypemethod
+@deftypemethod URLConnection {public boolean} getAllowUserInteraction ()
+
+@end deftypemethod
+@deftypemethod URLConnection {public static void} setDefaultAllowUserInteraction (boolean@w{ }@var{defaultallowuserinteraction})
+
+@end deftypemethod
+@deftypemethod URLConnection {public static boolean} getDefaultAllowUserInteraction ()
+
+@end deftypemethod
+@deftypemethod URLConnection {public void} setUseCaches (boolean@w{ }@var{usecaches})
+
+@end deftypemethod
+@deftypemethod URLConnection {public boolean} getUseCaches ()
+
+@end deftypemethod
+@deftypemethod URLConnection {public void} setIfModifiedSince (long@w{ }@var{ifmodifiedsince})
+
+@end deftypemethod
+@deftypemethod URLConnection {public long} getIfModifiedSince ()
+
+@end deftypemethod
+@deftypemethod URLConnection {public boolean} getDefaultUseCaches ()
+
+@end deftypemethod
+@deftypemethod URLConnection {public void} setDefaultUseCaches (boolean@w{ }@var{defaultusecaches})
+
+@end deftypemethod
+@deftypemethod URLConnection {public void} setRequestProperty (java.lang.String@w{ }@var{key}, java.lang.String@w{ }@var{value})
+
+@end deftypemethod
+@deftypemethod URLConnection {public String} getRequestProperty (java.lang.String@w{ }@var{key})
+
+@end deftypemethod
+@deftypemethod URLConnection {public static void} setDefaultRequestProperty (java.lang.String@w{ }@var{key}, java.lang.String@w{ }@var{value})
+
+@end deftypemethod
+@deftypemethod URLConnection {public static String} getDefaultRequestProperty (java.lang.String@w{ }@var{key})
+
+@end deftypemethod
+@deftypemethod URLConnection {public static void} setContentHandlerFactory (java.net.ContentHandlerFactory@w{ }@var{fac})
+
+@end deftypemethod
+@deftypemethod URLConnection {protected static String} guessContentTypeFromName (java.lang.String@w{ }@var{fname})
+
+@end deftypemethod
+@deftypemethod URLConnection {public static FileNameMap} getFileNameMap ()
+
+@end deftypemethod
+@deftypemethod URLConnection {public static void} setFileNameMap (java.net.FileNameMap@w{ }@var{map})
+
+@end deftypemethod
+@deftypemethod URLDecoder {public static String} decode (java.lang.String@w{ }@var{s}) @*throws Exception
+
+@end deftypemethod
+@deftypemethod URLEncoder {public static String} encode (java.lang.String@w{ }@var{s})
+
+@end deftypemethod
+@deftypemethod URL {public boolean} equals (java.lang.Object@w{ }@var{obj})
+
+@end deftypemethod
+@deftypemethod URL {public final Object} getContent () @*throws IOException
+
+@end deftypemethod
+@deftypemethod URL {public String} getFile ()
+
+@end deftypemethod
+@deftypemethod URL {public String} getHost ()
+
+@end deftypemethod
+@deftypemethod URL {public int} getPort ()
+
+@end deftypemethod
+@deftypemethod URL {public String} getProtocol ()
+
+@end deftypemethod
+@deftypemethod URL {public String} getRef ()
+
+@end deftypemethod
+@deftypemethod URL {public int} hashCode ()
+
+@end deftypemethod
+@deftypemethod URL {public URLConnection} openConnection () @*throws IOException
+
+@end deftypemethod
+@deftypemethod URL {public final InputStream} openStream () @*throws IOException
+
+@end deftypemethod
+@deftypemethod URL {public boolean} sameFile (java.net.URL@w{ }@var{other})
+
+@end deftypemethod
+@deftypemethod URL {protected void} set (java.lang.String@w{ }@var{protocol}, java.lang.String@w{ }@var{host}, int@w{ }@var{port}, java.lang.String@w{ }@var{file}, java.lang.String@w{ }@var{ref})
+
+@end deftypemethod
+@deftypemethod URL {public static synchronized void} setURLStreamHandlerFactory (java.net.URLStreamHandlerFactory@w{ }@var{fac})
+
+@end deftypemethod
+@deftypemethod URL {public String} toExternalForm ()
+
+@end deftypemethod
+@deftypemethod URL {public String} toString ()
+
+@end deftypemethod
+@deftypemethod URLStreamHandlerFactory {public URLStreamHandler} createURLStreamHandler (java.lang.String@w{ }@var{protocol})
+
+@end deftypemethod
+@deftypemethod URLStreamHandler {protected abstract URLConnection} openConnection (java.net.URL@w{ }@var{u}) @*throws IOException
+
+@end deftypemethod
+@deftypemethod URLStreamHandler {protected void} parseURL (java.net.URL@w{ }@var{u}, java.lang.String@w{ }@var{spec}, int@w{ }@var{start}, int@w{ }@var{limit})
+
+@end deftypemethod
+@deftypemethod URLStreamHandler {protected void} setURL (java.net.URL@w{ }@var{u}, java.lang.String@w{ }@var{protocol}, java.lang.String@w{ }@var{host}, int@w{ }@var{port}, java.lang.String@w{ }@var{file}, java.lang.String@w{ }@var{ref})
+
+@end deftypemethod
+@deftypemethod URLStreamHandler {protected String} toExternalForm (java.net.URL@w{ }@var{u})
+
+@end deftypemethod