nu.xom.Element.getChild()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(6.5k)|赞(0)|评价(0)|浏览(317)

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

Element.getChild介绍

暂无

代码示例

代码示例来源:origin: com.thoughtworks.xstream/xstream

  1. public String getValue() {
  2. // currentElement.getValue() not used as this includes text of child elements, which we don't want.
  3. StringBuffer result = new StringBuffer();
  4. int childCount = currentElement.getChildCount();
  5. for(int i = 0; i < childCount; i++) {
  6. Node child = currentElement.getChild(i);
  7. if (child instanceof Text) {
  8. Text text = (Text) child;
  9. result.append(text.getValue());
  10. }
  11. }
  12. return result.toString();
  13. }

代码示例来源:origin: stanfordnlp/CoreNLP

  1. CoreMap sentence = new ArrayCoreMap();
  2. sentence.set(CoreAnnotations.CharacterOffsetBeginAnnotation.class, offset);
  3. Tree tree = Tree.valueOf(sentElem.getChild(0).getValue()); // XXX ms: is this the same as sentElem.getText() in JDOM?
  4. List<CoreLabel> tokens = new ArrayList<>();
  5. List<Tree> preTerminals = preTerminals(tree);

代码示例来源:origin: concordion/concordion

  1. private Node[] getChildNodes() {
  2. Node[] childNodes = new Node[xomElement.getChildCount()];
  3. for (int i = 0; i < xomElement.getChildCount(); i++) {
  4. childNodes[i] = xomElement.getChild(i);
  5. }
  6. return childNodes;
  7. }

代码示例来源:origin: org.concordion/concordion

  1. private Node[] getChildNodes() {
  2. Node[] childNodes = new Node[xomElement.getChildCount()];
  3. for (int i = 0; i < xomElement.getChildCount(); i++) {
  4. childNodes[i] = xomElement.getChild(i);
  5. }
  6. return childNodes;
  7. }

代码示例来源:origin: teiid/teiid

  1. private boolean hasChildElements(Element elem) {
  2. for (int i = elem.getChildCount(); --i >= 0;) {
  3. if (elem.getChild(i) instanceof Element) return true;
  4. }
  5. return false;
  6. }

代码示例来源:origin: org.teiid/saxon-xom

  1. private boolean hasChildElements(Element elem) {
  2. for (int i = elem.getChildCount(); --i >= 0;) {
  3. if (elem.getChild(i) instanceof Element) return true;
  4. }
  5. return false;
  6. }

代码示例来源:origin: org.concordion/concordion

  1. private List<Node> nodesBeforeBody(Element html) {
  2. List<Node> nodes = new ArrayList<Node>();
  3. for (int i = 0; i < html.getChildCount(); i++) {
  4. Node child = html.getChild(i);
  5. if (isBodySection(child)) {
  6. break;
  7. }
  8. nodes.add(child);
  9. }
  10. return nodes;
  11. }

代码示例来源:origin: org.jvnet.hudson/xstream

  1. public String getValue() {
  2. // currentElement.getValue() not used as this includes text of child elements, which we don't want.
  3. StringBuffer result = new StringBuffer();
  4. int childCount = currentElement.getChildCount();
  5. for(int i = 0; i < childCount; i++) {
  6. Node child = currentElement.getChild(i);
  7. if (child instanceof Text) {
  8. Text text = (Text) child;
  9. result.append(text.getValue());
  10. }
  11. }
  12. return result.toString();
  13. }

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.xstream

  1. public String getValue() {
  2. // currentElement.getValue() not used as this includes text of child elements, which we don't want.
  3. StringBuffer result = new StringBuffer();
  4. int childCount = currentElement.getChildCount();
  5. for(int i = 0; i < childCount; i++) {
  6. Node child = currentElement.getChild(i);
  7. if (child instanceof Text) {
  8. Text text = (Text) child;
  9. result.append(text.getValue());
  10. }
  11. }
  12. return result.toString();
  13. }

代码示例来源:origin: edu.internet2.middleware.grouper/grouperClient

  1. public String getValue() {
  2. // currentElement.getValue() not used as this includes text of child elements, which we don't want.
  3. StringBuffer result = new StringBuffer();
  4. int childCount = currentElement.getChildCount();
  5. for(int i = 0; i < childCount; i++) {
  6. Node child = currentElement.getChild(i);
  7. if (child instanceof Text) {
  8. Text text = (Text) child;
  9. result.append(text.getValue());
  10. }
  11. }
  12. return result.toString();
  13. }

代码示例来源:origin: se.vgregion.pubsubhubbub/pubsubhubbub-hub-composite-pubsub

  1. public static String innerToString(Element elm) {
  2. StringBuilder sb = new StringBuilder();
  3. for(int i = 0; i<elm.getChildCount(); i++) {
  4. Node child = elm.getChild(i);
  5. sb.append(child.toXML());
  6. }
  7. return sb.toString();
  8. }

代码示例来源:origin: concordion/concordion

  1. private List<Node> nodesBeforeBody(Element html) {
  2. List<Node> nodes = new ArrayList<Node>();
  3. for (int i = 0; i < html.getChildCount(); i++) {
  4. Node child = html.getChild(i);
  5. if (isBodySection(child)) {
  6. break;
  7. }
  8. nodes.add(child);
  9. }
  10. return nodes;
  11. }

代码示例来源:origin: org.sonatype.nexus.xstream/xstream

  1. public String getValue() {
  2. // currentElement.getValue() not used as this includes text of child elements, which we don't want.
  3. StringBuffer result = new StringBuffer();
  4. int childCount = currentElement.getChildCount();
  5. for(int i = 0; i < childCount; i++) {
  6. Node child = currentElement.getChild(i);
  7. if (child instanceof Text) {
  8. Text text = (Text) child;
  9. result.append(text.getValue());
  10. }
  11. }
  12. return result.toString();
  13. }

代码示例来源:origin: ovea-deprecated/jetty-session-redis

  1. public String getValue() {
  2. // currentElement.getValue() not used as this includes text of child elements, which we don't want.
  3. StringBuffer result = new StringBuffer();
  4. int childCount = currentElement.getChildCount();
  5. for(int i = 0; i < childCount; i++) {
  6. Node child = currentElement.getChild(i);
  7. if (child instanceof Text) {
  8. Text text = (Text) child;
  9. result.append(text.getValue());
  10. }
  11. }
  12. return result.toString();
  13. }

代码示例来源:origin: com.haulmont.thirdparty/xstream

  1. public String getValue() {
  2. // currentElement.getValue() not used as this includes text of child elements, which we don't want.
  3. StringBuffer result = new StringBuffer();
  4. int childCount = currentElement.getChildCount();
  5. for(int i = 0; i < childCount; i++) {
  6. Node child = currentElement.getChild(i);
  7. if (child instanceof Text) {
  8. Text text = (Text) child;
  9. result.append(text.getValue());
  10. }
  11. }
  12. return result.toString();
  13. }

代码示例来源:origin: org.xml-cml/cmlxom

  1. /** copies children of element make subclasses when required
  2. *
  3. * @param element to copy from
  4. * @param to
  5. */
  6. public static void copyChildrenFromTo(Element element, Element to) {
  7. for (int i = 0; i < element.getChildCount(); i++) {
  8. Node childNode = element.getChild(i);
  9. Node newNode = childNode.copy();
  10. to.appendChild(newNode);
  11. }
  12. }

代码示例来源:origin: org.xml-cml/cmlxom

  1. /** copies children of element make subclasses when required
  2. *
  3. * @param element to copy from
  4. */
  5. public void copyChildrenFrom(Element element) {
  6. for (int i = 0; i < element.getChildCount(); i++) {
  7. Node childNode = element.getChild(i);
  8. Node newNode = childNode.copy();
  9. this.appendChild(newNode);
  10. }
  11. }

代码示例来源:origin: com.io7m.jstructural/io7m-jstructural-xom

  1. private static STableCell tableCell(
  2. final Element e)
  3. throws URISyntaxException
  4. {
  5. final List<STableCellContent> content = new ArrayList<STableCellContent>();
  6. for (int index = 0; index < e.getChildCount(); ++index) {
  7. final Node n = e.getChild(index);
  8. content.add(SDocumentParser.tableCellContent(n));
  9. }
  10. return STableCell.tableCell(content);
  11. }

代码示例来源:origin: org.teiid/saxon-xom

  1. final void writeElement(Element elem) throws IOException {
  2. writeStartTag(elem);
  3. for (int i = 0; i < elem.getChildCount(); i++) {
  4. writeChild(elem.getChild(i));
  5. }
  6. writeEndTag();
  7. }

代码示例来源:origin: teiid/teiid

  1. final void writeElement(Element elem) throws IOException {
  2. writeStartTag(elem);
  3. for (int i = 0; i < elem.getChildCount(); i++) {
  4. writeChild(elem.getChild(i));
  5. }
  6. writeEndTag();
  7. }

相关文章