Пример #1
0
 public boolean equals(Object obj) {
   if ((obj != null) && (obj instanceof Connector.Argument)) {
     Connector.Argument other = (Connector.Argument) obj;
     return (name().equals(other.name()))
         && (description().equals(other.description()))
         && (mustSpecify() == other.mustSpecify())
         && (value().equals(other.value()));
   } else {
     return false;
   }
 }