我正在研究 GWT elemental 作为访问 GWT 中 java dom 的更快方法。然而,当我查看 maven 依赖项的源代码时,我看到的只是 js 覆盖。例如:
public class JsNode extends JsElementalMixinBase implements Node {
protected JsNode() {}
public final native JsNamedNodeMap getAttributes() /*-{
return this.attributes;
}-*/;
public final native String getBaseURI() /*-{
return this.baseURI;
}-*/;
public final native JsNodeList getChildNodes() /*-{
return this.childNodes;
}-*/;
public final native JsNode getFirstChild() /*-{
return this.firstChild;
}-*/;
public final native JsNode getLastChild() /*-{
return this.lastChild;
}-*/;
....
这与默认 gwt xml dom 中的内容相差不远。我在这里想念什么?
谢谢!