MCPcopy Create free account
hub / github.com/diffplug/goomph / equals

Method equals

src/main/java/com/diffplug/gradle/p2/P2Model.java:86–93  ·  view source on GitHub ↗

Two models are equal if all their fields are equal.

(Object otherObj)

Source from the content-addressed store, hash-verified

84
85 /** Two models are equal if all their fields are equal. */
86 @Override
87 public boolean equals(Object otherObj) {
88 if (otherObj instanceof P2Model) {
89 return content.equals(((P2Model) otherObj).content);
90 } else {
91 return false;
92 }
93 }
94
95 @Override
96 public String toString() {

Callers 11

indexOfMethod · 0.45
readMethod · 0.45
hasTokenMethod · 0.45
deleteEmptyFoldersMethod · 0.45
createMethod · 0.45
runWithinEclipseMethod · 0.45
findJreMethod · 0.45
addDependencyMethod · 0.45
loadBundleMethod · 0.45
executeMethod · 0.45
platformMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected