in dbus-java/src/main/java/org/freedesktop/dbus/SignalTuple.java [32:62]
public boolean equals(Object o) {
if (!(o instanceof SignalTuple)) {
return false;
}
SignalTuple other = (SignalTuple) o;
if (null == this.type && null != other.type) {
return false;
}
if (null != this.type && !this.type.equals(other.type)) {
return false;
}
if (null == this.name && null != other.name) {
return false;
}
if (null != this.name && !this.name.equals(other.name)) {
return false;
}
if (null == this.object && null != other.object) {
return false;
}
if (null != this.object && !this.object.equals(other.object)) {
return false;
}
if (null == this.source && null != other.source) {
return false;
}
if (null != this.source && !this.source.equals(other.source)) {
return false;
}
return true;
}