You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package com.fr.design.jxbrowser; |
|
|
|
import com.teamdev.jxbrowser.js.JsObject; |
|
|
|
/** |
|
* 属性构建器 |
|
* |
|
* @author vito |
|
* @since 11.0 |
|
* Created on 2023/6/8 |
|
*/ |
|
public interface PropertyBuild { |
|
/** |
|
* 构建属性 |
|
* |
|
* @param window js环境的window对象 |
|
* @return 待注入java对象 |
|
*/ |
|
Object build(JsObject window); |
|
} |