MCPcopy Index your code
hub / github.com/SeleniumHQ/selenium / equals

Method equals

java/src/org/openqa/selenium/events/Event.java:75–85  ·  view source on GitHub ↗
(Object o)

Source from the content-addressed store, hash-verified

73 }
74
75 @Override
76 public boolean equals(Object o) {
77 if (!(o instanceof Event)) {
78 return false;
79 }
80
81 Event that = (Event) o;
82 return Objects.equals(this.getId(), that.getId())
83 && Objects.equals(this.getType(), that.getType())
84 && Objects.equals(this.getRawData(), that.getRawData());
85 }
86
87 @Override
88 public int hashCode() {

Callers 15

setActiveKeyboardMethod · 0.45
setActivePointerMethod · 0.45
setActiveWheelMethod · 0.45
FirefoxOptionsMethod · 0.45
getExtraCapabilityMethod · 0.45
mergeMethod · 0.45
createArgsMethod · 0.45
preferenceAsValueMethod · 0.45
getNamespaceURIMethod · 0.45
updateUserPrefsMethod · 0.45
createArgsMethod · 0.45
copyDirMethod · 0.45

Calls 3

getIdMethod · 0.95
getTypeMethod · 0.95
getRawDataMethod · 0.95

Tested by

no test coverage detected