com.google.gwt.xml.client.Node.getAttributes()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(6.9k)|赞(0)|评价(0)|浏览(246)

本文整理了Java中com.google.gwt.xml.client.Node.getAttributes()方法的一些代码示例,展示了Node.getAttributes()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Node.getAttributes()方法的具体详情如下:
包路径:com.google.gwt.xml.client.Node
类名称:Node
方法名:getAttributes

Node.getAttributes介绍

[英]This method retrieves the attributes.
[中]此方法检索属性。

代码示例

代码示例来源:origin: org.geomajas.plugin/geomajas-plugin-wmsclient

  1. private boolean isQueryable(Node layerNode) {
  2. NamedNodeMap attributes = layerNode.getAttributes();
  3. Node q = attributes.getNamedItem("queryable");
  4. if (q != null) {
  5. return "1".equals(q.getNodeValue());
  6. }
  7. return false;
  8. }

代码示例来源:origin: org.geomajas.plugin/geomajas-plugin-wmsclient

  1. private boolean isQueryable(Node layerNode) {
  2. NamedNodeMap attributes = layerNode.getAttributes();
  3. Node q = attributes.getNamedItem("queryable");
  4. if (q != null) {
  5. return "1".equals(q.getNodeValue());
  6. }
  7. return false;
  8. }

代码示例来源:origin: org.apache.cxf/cxf-rt-management-web

  1. private void setLink(@Nonnull final Node node) {
  2. Node typeNode = node.getAttributes().getNamedItem(TYPE_ATTRIBUTE);
  3. Node urlNode = node.getAttributes().getNamedItem(URL_ATTRIBUTE);
  4. if (typeNode != null && urlNode != null) {
  5. String typeValue = typeNode.getNodeValue();
  6. String urlValue = urlNode.getNodeValue();
  7. if (FIRST_LINK.equals(typeValue)) {
  8. first = urlValue;
  9. } else if (PREVIOUS_LINK.equals(typeValue)) {
  10. previous = urlValue;
  11. } else if (SELF_LINK.equals(typeValue)) {
  12. self = urlValue;
  13. } else if (NEXT_LINK.equals(typeValue)) {
  14. next = urlValue;
  15. } else if (LAST_LINK.equals(typeValue)) {
  16. last = urlValue;
  17. }
  18. }
  19. }
  20. }

代码示例来源:origin: org.geomajas/geomajas-client-gwt2-impl

  1. protected double getAttributeAsDouble(Node node, String name) {
  2. Node attr = node.getAttributes().getNamedItem(name);
  3. return getValueRecursiveAsDouble(attr);
  4. }

代码示例来源:origin: org.geomajas/geomajas-client-gwt2-impl

  1. protected boolean hasAttribute(Node node, String name) {
  2. return node.hasAttributes() && node.getAttributes().getNamedItem(name) != null;
  3. }

代码示例来源:origin: org.geomajas.plugin/geomajas-plugin-wmsclient

  1. protected void parse(Node node) {
  2. NamedNodeMap attributes = node.getAttributes();
  3. type = getValueRecursive(attributes.getNamedItem("type"));
  4. NodeList childNodes = node.getChildNodes();
  5. for (int i = 0; i < childNodes.getLength(); i++) {
  6. Node child = childNodes.item(i);
  7. String nodeName = child.getNodeName();
  8. if ("Format".equalsIgnoreCase(nodeName)) {
  9. format = getValueRecursive(child);
  10. } else if ("OnlineResource".equalsIgnoreCase(nodeName)) {
  11. onlineResource = createOnlineResource(child);
  12. }
  13. }
  14. }

代码示例来源:origin: org.geomajas/geomajas-client-gwt2-impl

  1. protected Coordinate getCoordinate(Node node) {
  2. NamedNodeMap attributes = node.getAttributes();
  3. double x = getValueRecursiveAsDouble(attributes.getNamedItem("x"));
  4. double y = getValueRecursiveAsDouble(attributes.getNamedItem("y"));
  5. return new Coordinate(x, y);
  6. }
  7. }

代码示例来源:origin: org.geomajas.plugin/geomajas-plugin-wmsclient

  1. protected void parse(Node node) {
  2. NamedNodeMap attributes = node.getAttributes();
  3. type = getValueRecursive(attributes.getNamedItem("xlink:type"));
  4. xLink = getValueRecursive(attributes.getNamedItem("xmlns:xlink"));
  5. href = getValueRecursive(attributes.getNamedItem("xlink:href"));
  6. }
  7. }

代码示例来源:origin: org.geomajas.plugin/geomajas-plugin-wmsclient

  1. protected void parse(Node node) {
  2. NamedNodeMap attributes = node.getAttributes();
  3. width = getValueRecursiveAsInteger(attributes.getNamedItem("width"));
  4. height = getValueRecursiveAsInteger(attributes.getNamedItem("height"));
  5. NodeList childNodes = node.getChildNodes();
  6. for (int i = 0; i < childNodes.getLength(); i++) {
  7. Node child = childNodes.item(i);
  8. String nodeName = child.getNodeName();
  9. if ("Format".equalsIgnoreCase(nodeName)) {
  10. format = getValueRecursive(child);
  11. } else if ("OnlineResource".equalsIgnoreCase(nodeName)) {
  12. onlineResource = createOnlineResource(child);
  13. }
  14. }
  15. }

代码示例来源:origin: com.googlecode.gwtupload/gwtupload

  1. String value = Utils.getXmlNodeValue(node);
  2. if (value != null) {
  3. Node attribute = node.getAttributes().getNamedItem(ATTR_BLOBSTORE_PARAM_NAME);
  4. if (attribute != null) {
  5. String paramName = attribute.getNodeValue();

代码示例来源:origin: org.geomajas/geomajas-client-gwt2-impl

  1. protected Bbox getBoundingBox(Node node) {
  2. NamedNodeMap attributes = node.getAttributes();
  3. Node minx = attributes.getNamedItem("minx");
  4. Node miny = attributes.getNamedItem("miny");
  5. Node maxx = attributes.getNamedItem("maxx");
  6. Node maxy = attributes.getNamedItem("maxy");
  7. double x = getValueRecursiveAsDouble(minx);
  8. double y = getValueRecursiveAsDouble(miny);
  9. double width = getValueRecursiveAsDouble(maxx) - x;
  10. double height = getValueRecursiveAsDouble(maxy) - y;
  11. return new Bbox(x, y, width, height);
  12. }

代码示例来源:origin: org.geomajas.plugin/geomajas-plugin-wmsclient

  1. private void addLatLonBoundingBox(Node bboxNode) {
  2. NamedNodeMap attributes = bboxNode.getAttributes();
  3. Node minx = attributes.getNamedItem("minx");
  4. Node miny = attributes.getNamedItem("miny");
  5. Node maxx = attributes.getNamedItem("maxx");
  6. Node maxy = attributes.getNamedItem("maxy");
  7. double x = getValueRecursiveAsDouble(minx);
  8. double y = getValueRecursiveAsDouble(miny);
  9. double width = getValueRecursiveAsDouble(maxx) - x;
  10. double height = getValueRecursiveAsDouble(maxy) - y;
  11. latlonBoundingBox = new Bbox(x, y, width, height);
  12. }
  13. }

代码示例来源:origin: org.geomajas.plugin/geomajas-plugin-wmsclient

  1. private void addBoundingBox(Node bboxNode) {
  2. NamedNodeMap attributes = bboxNode.getAttributes();
  3. Node crs = attributes.getNamedItem("CRS");
  4. boundingBoxCrs = getValueRecursive(crs);
  5. Node minx = attributes.getNamedItem("minx");
  6. Node miny = attributes.getNamedItem("miny");
  7. Node maxx = attributes.getNamedItem("maxx");
  8. Node maxy = attributes.getNamedItem("maxy");
  9. double x = getValueRecursiveAsDouble(minx);
  10. double y = getValueRecursiveAsDouble(miny);
  11. double width = getValueRecursiveAsDouble(maxx) - x;
  12. double height = getValueRecursiveAsDouble(maxy) - y;
  13. boundingBox = new Bbox(x, y, width, height);
  14. }

代码示例来源:origin: org.geomajas.plugin/geomajas-client-gwt2-plugin-wfs

  1. private void addLatLonBoundingBox(Node bboxNode) {
  2. NamedNodeMap attributes = bboxNode.getAttributes();
  3. double x = 0, y = 0, maxx = 0, maxy = 0;
  4. Node n = attributes.getNamedItem("minx");
  5. if (n != null) {
  6. x = getValueRecursiveAsDouble(n);
  7. }
  8. n = attributes.getNamedItem("miny");
  9. if (n != null) {
  10. y = getValueRecursiveAsDouble(n);
  11. }
  12. n = attributes.getNamedItem("maxx");
  13. if (n != null) {
  14. maxx = getValueRecursiveAsDouble(n);
  15. }
  16. n = attributes.getNamedItem("maxy");
  17. if (n != null) {
  18. maxy = getValueRecursiveAsDouble(n);
  19. }
  20. wGS84BoundingBox = new Bbox(x, y, maxx - x, maxy - y);
  21. }

代码示例来源:origin: org.geomajas.plugin/geomajas-plugin-wmsclient

  1. private void addBoundingBox(Node bboxNode) {
  2. NamedNodeMap attributes = bboxNode.getAttributes();
  3. Node crs = attributes.getNamedItem("SRS");
  4. boundingBoxCrs = getValueRecursive(crs);
  5. Node minx = attributes.getNamedItem("minx");
  6. Node miny = attributes.getNamedItem("miny");
  7. Node maxx = attributes.getNamedItem("maxx");
  8. Node maxy = attributes.getNamedItem("maxy");
  9. double x = getValueRecursiveAsDouble(minx);
  10. double y = getValueRecursiveAsDouble(miny);
  11. double width = getValueRecursiveAsDouble(maxx) - x;
  12. double height = getValueRecursiveAsDouble(maxy) - y;
  13. boundingBox = new Bbox(x, y, width, height);
  14. }

相关文章