|
|
|
@ -35,6 +35,7 @@ public class PluginWebBridge {
|
|
|
|
|
private static PluginWebBridge helper; |
|
|
|
|
|
|
|
|
|
private UIDialog uiDialog; |
|
|
|
|
private String showKeyword; |
|
|
|
|
|
|
|
|
|
public static PluginWebBridge getHelper() { |
|
|
|
|
if (helper != null) { |
|
|
|
@ -59,6 +60,14 @@ public class PluginWebBridge {
|
|
|
|
|
private PluginWebBridge() { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getShowKeyword() { |
|
|
|
|
return showKeyword; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setShowKeyword(String showKeyWord) { |
|
|
|
|
this.showKeyword = showKeyWord; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setEngine(WebEngine webEngine) { |
|
|
|
|
this.webEngine = webEngine; |
|
|
|
|
} |
|
|
|
|