aboutsummaryrefslogtreecommitdiff
path: root/libjava/java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2004-03-20 17:59:39 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2004-03-20 17:59:39 +0000
commit7f5773c6921038f292a9737d9bf4dc51595b4f12 (patch)
tree87aaec24a3cb254640eb70e3b6337644c277b1d6 /libjava/java
parent245f1bfacf4af13a28da3700f110090c20139b4d (diff)
downloadgcc-7f5773c6921038f292a9737d9bf4dc51595b4f12.zip
gcc-7f5773c6921038f292a9737d9bf4dc51595b4f12.tar.gz
gcc-7f5773c6921038f292a9737d9bf4dc51595b4f12.tar.bz2
2004-03-20 Michael Koch <konqueror@gmx.de>
* java/net/InetAddress.java (getLocalHostname): Added javadoc. From-SVN: r79751
Diffstat (limited to 'libjava/java')
-rw-r--r--libjava/java/net/InetAddress.java10
1 files changed, 9 insertions, 1 deletions
diff --git a/libjava/java/net/InetAddress.java b/libjava/java/net/InetAddress.java
index e5f6ba3..126348b 100644
--- a/libjava/java/net/InetAddress.java
+++ b/libjava/java/net/InetAddress.java
@@ -1,5 +1,5 @@
/* InetAddress.java -- Class to model an Internet address
- Copyright (C) 1998, 1999, 2002 Free Software Foundation, Inc.
+ Copyright (C) 1998, 1999, 2002, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -662,6 +662,14 @@ public class InetAddress implements Serializable
return lookup (hostname, null, true);
}
+ /**
+ * This native method looks up the hostname of the local machine
+ * we are on. If the actual hostname cannot be determined, then the
+ * value "localhost" will be used. This native method wrappers the
+ * "gethostname" function.
+ *
+ * @return The local hostname.
+ */
private static native String getLocalHostname();
/**