29 if (null == this.
type && null != other.type)
return false;
30 if (null != this.
type && !this.
type.equals(other.type))
return false;
31 if (null == this.
name && null != other.name)
return false;
32 if (null != this.
name && !this.
name.equals(other.name))
return false;
33 if (null == this.
object && null != other.object)
return false;
34 if (null != this.
object && !this.
object.
equals(other.object))
return false;
35 if (null == this.
source && null != other.source)
return false;
36 if (null != this.
source && !this.
source.equals(other.source))
return false;
String name
Definition: SignalTuple.java:15
SignalTuple(String type, String name, String object, String source)
Definition: SignalTuple.java:19
boolean equals(Object o)
Definition: SignalTuple.java:26
String type
Definition: SignalTuple.java:14
String source
Definition: SignalTuple.java:17