|
|
|
@ -14,6 +14,8 @@ import com.fr.web.struct.AssembleComponent;
|
|
|
|
|
import com.teamdev.jxbrowser.browser.Browser; |
|
|
|
|
import com.teamdev.jxbrowser.browser.callback.CertificateErrorCallback; |
|
|
|
|
import com.teamdev.jxbrowser.browser.callback.InjectJsCallback; |
|
|
|
|
import com.teamdev.jxbrowser.chromium.events.LoadListener; |
|
|
|
|
import com.teamdev.jxbrowser.chromium.events.ScriptContextListener; |
|
|
|
|
import com.teamdev.jxbrowser.event.Observer; |
|
|
|
|
import com.teamdev.jxbrowser.frame.Frame; |
|
|
|
|
import com.teamdev.jxbrowser.js.JsObject; |
|
|
|
@ -445,6 +447,34 @@ public class JxUIPane<T> extends ModernUIPane<T> {
|
|
|
|
|
return this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 下面XXXV6/XXXV7相关的四个方法不要删 兼容扩展图表插件用 |
|
|
|
|
* |
|
|
|
|
* @param contextListener 上下文监听器 |
|
|
|
|
* @return builder |
|
|
|
|
*/ |
|
|
|
|
@Override |
|
|
|
|
public Builder<T> prepareForV6(ScriptContextListener contextListener) { |
|
|
|
|
return this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public Builder<T> prepareForV6(LoadListener loadListener) { |
|
|
|
|
return this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public JxUIPane.Builder<T> prepareForV7(InjectJsCallback callback) { |
|
|
|
|
prepare(callback); |
|
|
|
|
return this; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public JxUIPane.Builder<T> prepareForV7(Class event, Observer listener) { |
|
|
|
|
return prepare(event, listener); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 加载jar包中的资源 |
|
|
|
|
* |
|
|
|
|