From c0032229d49c083a54522777f2cd4140a6d4a166 Mon Sep 17 00:00:00 2001 From: Brian Rosenberger Date: Sat, 31 Dec 2011 13:55:17 +0000 Subject: [PATCH] Updated javadoc git-svn-id: https://brutex.net/svn/xservices/trunk@80 e7e49efb-446e-492e-b9ec-fcafc1997a86 --- .../brutex/xservices/types/HostinfoType.java | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/src/java/net/brutex/xservices/types/HostinfoType.java b/src/java/net/brutex/xservices/types/HostinfoType.java index f126db4..4f8184d 100644 --- a/src/java/net/brutex/xservices/types/HostinfoType.java +++ b/src/java/net/brutex/xservices/types/HostinfoType.java @@ -31,12 +31,14 @@ public class HostinfoType { public final static String XML_NAME="hostinfo"; /** - * + * Create a new HostinfoType. */ public HostinfoType() { } /** + * Create a new HostinfoType. + * * @param name * @param domain * @param ip4 @@ -56,53 +58,63 @@ public class HostinfoType { /** + * Get the host name. + * * @return the name */ public String getName() { return name; } /** + * Set the host name. + * * @param name the name to set */ public void setName(String name) { this.name = name; } /** + * Get the host domain. + * * @return the domain */ public String getDomain() { return domain; } /** + * Set the host domain. + * * @param domain the domain to set */ public void setDomain(String domain) { this.domain = domain; } /** + * Get the IP address version 4 representation for this host. * @return the ip4 */ public String getIp4() { return ip4; } /** + * Set the IP address version 4. * @param ip4 the ip4 to set */ public void setIp4(String ip4) { this.ip4 = ip4; } /** + * Get the IP address version 6 representation for this host. * @return the ip6 */ public String getIp6() { return ip6; } /** + * Set the IP address version 6 representation for this host. * @param ip6 the ip6 to set */ public void setIp6(String ip6) { this.ip6 = ip6; } - - }