static S structure(O o) { ret (S) call(structUnstructModule(), "structure", o); } static O unstructure(S s) { ret call(structUnstructModule(), "unstructure", s); } static O unstructure(S s, final boolean allDynamic) { ret call(structUnstructModule(), "unstructure", s, allDynamic); } static S sendToLocalBot(S bot, S text, O... args) { ret (S) call(structUnstructModule(), "sendToLocalBot", bot, text, args); } static S sendToLocalBot(int port, S text, O... args) { ret (S) call(structUnstructModule(), "sendToLocalBot", port, text, args); } static S loadPage(S url) { ret (S) call(structUnstructModule(), "loadPage", url); } static S loadPageSilently(S url) { ret (S) call(structUnstructModule(), "loadPageSilently", url); } static S loadPageSilently(URL url) { ret (S) call(structUnstructModule(), "loadPageSilently", url); }