MCPcopy Index your code
hub / github.com/HtmlUnit/htmlunit / handles

Method handles

src/main/java/org/htmlunit/html/HtmlArea.java:355–361  ·  view source on GitHub ↗

{@inheritDoc}

(final Event event)

Source from the content-addressed store, hash-verified

353 * {@inheritDoc}
354 */
355 @Override
356 public boolean handles(final Event event) {
357 if (Event.TYPE_BLUR.equals(event.getType()) || Event.TYPE_FOCUS.equals(event.getType())) {
358 return true;
359 }
360 return super.handles(event);
361 }
362
363 private boolean isEmpty() {
364 final String shape = StringUtils.defaultIfEmptyOrNull(getShapeAttribute(), SHAPE_RECT);

Callers

nothing calls this directly

Calls 2

equalsMethod · 0.45
getTypeMethod · 0.45

Tested by

no test coverage detected