30 if (!them.objectpath.equals(
this.objectpath))
return false;
32 if (null == this.
busname && null != them.busname)
return false;
33 if (null != this.
busname && null == them.busname)
return false;
34 if (null != them.busname && !them.busname.equals(
this.busname))
return false;
36 if (null == this.
iface && null != them.iface)
return false;
37 if (null != this.
iface && null == them.iface)
return false;
38 if (null != them.iface && !them.iface.equals(
this.iface))
return false;
Class<? extends DBusInterface > iface
Definition: RemoteObject.java:16
RemoteObject(String busname, String objectpath, Class<? extends DBusInterface > iface, boolean autostart)
Definition: RemoteObject.java:19
String busname
Definition: RemoteObject.java:14