19 package org.turro.contacts.organigram;
21 import java.io.Serializable;
30 private String description;
38 this.relationType = relationType;
39 if(nextOperator ==
null) {
49 this.description = description;
57 this.nextOperator = nextOperator;
63 hash = 67 * hash + (this.relationType !=
null ? this.relationType.hashCode() : 0);
64 hash = 67 * hash + (this.description !=
null ? this.description.hashCode() : 0);
73 if (getClass() != obj.getClass()) {
77 if (this.relationType != other.relationType) {
80 if ((this.description ==
null) ? (other.description !=
null) : !this.description.equals(other.description)) {