com.gargoylesoftware.htmlunit.javascript.JavaScriptErrorListener Java Examples

The following examples show how to use com.gargoylesoftware.htmlunit.javascript.JavaScriptErrorListener. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: WebClient.java    From htmlunit with Apache License 2.0 5 votes vote down vote up
/**
 * Sets the javascript error listener for this webclient.
 * When setting to null, the {@link DefaultJavaScriptErrorListener} is used.
 * @param javaScriptErrorListener the new JavaScriptErrorListener or null if none is specified
 */
public void setJavaScriptErrorListener(final JavaScriptErrorListener javaScriptErrorListener) {
    if (javaScriptErrorListener == null) {
        javaScriptErrorListener_ = new DefaultJavaScriptErrorListener();
    }
    else {
        javaScriptErrorListener_ = javaScriptErrorListener;
    }
}
 
Example #2
Source File: WebClient.java    From HtmlUnit-Android with Apache License 2.0 5 votes vote down vote up
/**
 * Sets the javascript error listener for this webclient.
 * When setting to null, the {@link DefaultJavaScriptErrorListener} is used.
 * @param javaScriptErrorListener the new JavaScriptErrorListener or null if none is specified
 */
public void setJavaScriptErrorListener(final JavaScriptErrorListener javaScriptErrorListener) {
    if (javaScriptErrorListener == null) {
        javaScriptErrorListener_ = new DefaultJavaScriptErrorListener();
    }
    else {
        javaScriptErrorListener_ = javaScriptErrorListener;
    }
}
 
Example #3
Source File: WebClient.java    From htmlunit with Apache License 2.0 2 votes vote down vote up
/**
 * Returns the javascript error listener for this webclient.
 * @return the javascript error listener or null if one hasn't been set
 */
public JavaScriptErrorListener getJavaScriptErrorListener() {
    return javaScriptErrorListener_;
}
 
Example #4
Source File: WebClient.java    From HtmlUnit-Android with Apache License 2.0 2 votes vote down vote up
/**
 * Returns the javascript error listener for this webclient.
 * @return the javascript error listener or null if one hasn't been set
 */
public JavaScriptErrorListener getJavaScriptErrorListener() {
    return javaScriptErrorListener_;
}