MCPcopy Create free account
hub / github.com/directwebremoting/dwr / equals

Method equals

etc/future/scanner/InboundVariable.java:339–370  ·  view source on GitHub ↗
(Object obj)

Source from the content-addressed store, hash-verified

337 * @see java.lang.Object#equals(java.lang.Object)
338 */
339 @Override
340 public boolean equals(Object obj)
341 {
342 if (this == obj)
343 {
344 return true;
345 }
346
347 if (!(obj instanceof InboundVariable))
348 {
349 return false;
350 }
351
352 InboundVariable that = (InboundVariable) obj;
353
354 if (!this.type.equals(that.type))
355 {
356 return false;
357 }
358
359 if (!this.formField.equals(that.formField))
360 {
361 return false;
362 }
363
364 if (this.key == null || that.key == null)
365 {
366 return false;
367 }
368
369 return true; // this.key.equals(that.key);
370 }
371
372 public String getType() {
373 return type;

Callers 15

namesAreEqualMethod · 0.45
publishHappenedMethod · 0.45
dereferenceMethod · 0.45
getJsonValueMethod · 0.45
isNullMethod · 0.45
executeMethod · 0.45
findMethodMethod · 0.45
convertInboundMethod · 0.45
getNamedConverterMethod · 0.45
publishHappenedMethod · 0.45

Calls

no outgoing calls

Tested by 1

publishHappenedMethod · 0.36