Methods Summary |
---|
public java.lang.Object | clone()
try {
return super.clone();
}
catch (CloneNotSupportedException c){
return null;
}
|
public boolean | equals(java.lang.Object rhs)
return rhs != null && rhs instanceof DomainEntry && this.equals((DomainEntry) rhs);
|
private boolean | equals(com.sun.enterprise.admin.common.domains.registry.DomainEntry rhs)
return rhs != null && this == rhs ||
(this.name.equals(rhs.name) && this.root.equals(rhs.root));
|
public ContactDataSet | getContactData()Get the contact data of the receiver
return this.contactData;
|
public java.lang.String | getName()Get the name of the receiver
return this.name;
|
public java.lang.String | getPath()Get the path of the receiver
return this.path;
|
public java.io.File | getRoot()Get the root of the receiver
return this.root;
|
public int | hashCode()
final String s = this.name+this.root.toString();
return s.hashCode();
|