1 38 package com.gargoylesoftware.htmlunit.html; 39 40 import java.util.Map ; 41 42 43 44 50 public abstract class FocusableElement extends ClickableElement { 51 52 57 public FocusableElement(final HtmlPage page, final Map attributes) { 58 super(page, attributes); 59 } 60 61 62 65 public void blur() { 66 getPage().getWebClient().moveFocusFromElement(this); 67 } 68 69 70 73 public void focus() { 74 getPage().getWebClient().moveFocusToElement(this); 75 } 76 77 } 78 | Popular Tags |