net.htmlparser.jericho.Element.getEnd()方法的使用及代码示例

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

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

Element.getEnd介绍

[英]Returns the end tag of the element.

If the element has no end tag this method returns null.
[中]返回元素的结束标记。
如果元素没有结束标记,则此方法返回null

代码示例

代码示例来源:origin: cflint/CFLint

  1. /**
  2. * Determine the line numbers of the <!--- @CFLintIgnore CFQUERYPARAM_REQ ---> tags
  3. * Both the current and the next line are included.
  4. *
  5. * @param element the element object
  6. * @return the line numbers of any @@CFLintIgnore annotations.
  7. */
  8. private List<Integer> determineIgnoreLines(final Element element) {
  9. final List<Integer> ignoreLines = new ArrayList<>();
  10. for (Element comment : element.getChildElements()) {
  11. if ("!---".equals(comment.getName()) && comment.toString().contains("@CFLintIgnore") && comment.toString().contains("CFQUERYPARAM_REQ")) {
  12. int ignoreLine = comment.getSource().getRow(comment.getEnd());
  13. ignoreLines.add(ignoreLine);
  14. ignoreLines.add(ignoreLine + 1);
  15. ignoreLines.add(comment.getSource().getRow(comment.getBegin()));
  16. } else {
  17. ignoreLines.addAll(determineIgnoreLines(comment));
  18. }
  19. }
  20. return ignoreLines;
  21. }

代码示例来源:origin: pl.edu.icm.synat/synat-portal-core

  1. private boolean processTag(Tag tag, OutputDocument outputDocument) {
  2. String elementName = tag.getName().toLowerCase();
  3. if (!allowedTags.contains(elementName)) {
  4. return false;
  5. }
  6. if (tag.getTagType() == StartTagType.NORMAL) {
  7. Element element = tag.getElement();
  8. if (HTMLElements.getEndTagRequiredElementNames().contains(elementName)) {
  9. if (element.getEndTag() == null) {
  10. return false;
  11. }
  12. } else if (HTMLElements.getEndTagOptionalElementNames().contains(elementName) && element.getEndTag() == null) {
  13. outputDocument.insert(element.getEnd(), getEndTagHTML(elementName));
  14. }
  15. outputDocument.replace(tag, getStartTagHTML(element.getStartTag()));
  16. return true;
  17. }
  18. if (tag.getTagType() == EndTagType.NORMAL) {
  19. if (tag.getElement() == null) {
  20. return false;
  21. }
  22. outputDocument.replace(tag, getEndTagHTML(elementName));
  23. return true;
  24. }
  25. return false;
  26. }

代码示例来源:origin: pl.edu.icm.synat/synat-portal-core

  1. private String processFirstTagOutOfBounds(String source, Tag tag, int maxLength, int tagSpace) {
  2. String cutHtml = null;
  3. if (tag.getTagType() == StartTagType.NORMAL) {
  4. int whitespacePos = maxLength + tagSpace - 1;
  5. while (whitespacePos < source.length() &&
  6. !Character.isWhitespace(source.charAt(whitespacePos)) &&
  7. !PUNCTUATION_SIGNS.contains(source.charAt(whitespacePos))) {
  8. ++whitespacePos;
  9. }
  10. cutHtml = (whitespacePos < tag.getBegin()) ? source.substring(0, whitespacePos) : source.substring(0, tag.getBegin());
  11. return cutHtml + getClosingTagsBehindElement(tag.getElement()) + SHORTED_FORM_END;
  12. } else {
  13. cutHtml = source.substring(0, tag.getEnd());
  14. boolean appendShorteningSign = true;
  15. if (tag.getElement() == null) {
  16. logger.error("DATA ERROR: No element in tag {}", source);
  17. return cutHtml + SHORTED_FORM_END;
  18. } else if (tag.getElement().getEnd() == source.length()) {
  19. appendShorteningSign = false;
  20. }
  21. return cutHtml + getClosingTagsBehindElement(tag.getElement()) + ((appendShorteningSign) ? SHORTED_FORM_END : "");
  22. }
  23. }

代码示例来源:origin: com.github.cfparser/cfml.parsing

  1. public ParserTag(StartTag tag) {
  2. setName(tag.getName());
  3. setBegin(tag.getElement().getEnd());
  4. setEnd(tag.getElement().getBegin());
  5. setStartTagBegin(tag.getElement().getStartTag().getBegin());
  6. setStartTagEnd(tag.getElement().getStartTag().getEnd());
  7. if (tag.getElement().getEndTag() != null) {
  8. setEndTagBegin(tag.getElement().getEndTag().getBegin());
  9. setEndTagEnd(tag.getElement().getEndTag().getEnd());
  10. } else {
  11. setEndTagBegin(tag.getElement().getStartTag().getBegin());
  12. setEndTagEnd(tag.getElement().getStartTag().getEnd());
  13. }
  14. setAttributes(tag.getAttributes());
  15. }

代码示例来源:origin: cflint/CFLint

  1. /**
  2. * Determine the line numbers of the <!--- @CFLintIgnore CFQUERYPARAM_REQ ---> tags
  3. * Both the current and the next line are included.
  4. *
  5. * @param element the element object
  6. * @return the line numbers of any @@CFLintIgnore annotations.
  7. */
  8. private List<Integer> determineIgnoreLines(final Element element) {
  9. final List<Integer> ignoreLines = new ArrayList<>();
  10. for (Element comment : element.getChildElements()) {
  11. if ("!---".equals(comment.getName()) && comment.toString().contains("@CFLintIgnore") && comment.toString().contains("CFQUERYPARAM_REQ")) {
  12. int ignoreLine = comment.getSource().getRow(comment.getEnd());
  13. ignoreLines.add(ignoreLine);
  14. ignoreLines.add(ignoreLine + 1);
  15. ignoreLines.add(comment.getSource().getRow(comment.getBegin()));
  16. } else {
  17. ignoreLines.addAll(determineIgnoreLines(comment));
  18. }
  19. }
  20. return ignoreLines;
  21. }

代码示例来源:origin: com.github.cfparser/cfml.parsing

  1. public ParserTag(net.htmlparser.jericho.Tag tag) {
  2. setName(tag.getName());
  3. setBegin(tag.getElement().getEnd());
  4. setEnd(tag.getElement().getBegin());
  5. setStartTagBegin(tag.getElement().getStartTag().getBegin());
  6. setStartTagEnd(tag.getElement().getStartTag().getEnd());
  7. if (tag.getElement().getEndTag() != null) {
  8. setEndTagBegin(tag.getElement().getEndTag().getBegin());
  9. setEndTagEnd(tag.getElement().getEndTag().getEnd());
  10. } else {
  11. setEndTagBegin(tag.getElement().getStartTag().getBegin());
  12. setEndTagEnd(tag.getElement().getStartTag().getEnd());
  13. }
  14. setAttributes(tag.getElement().getAttributes());
  15. }

代码示例来源:origin: konsoletyper/teavm-flavour

  1. private TemplateNode parseComponent(Element elem) {
  2. int prefixLength = elem.getName().indexOf(':');
  3. String prefix = elem.getName().substring(0, prefixLength);
  4. String name = elem.getName().substring(prefixLength + 1);
  5. String fullName = prefix + ":" + name;
  6. ElementComponentMetadata componentMeta = resolveComponent(prefix, name);
  7. if (componentMeta == null) {
  8. error(elem.getStartTag().getNameSegment(), "Undefined component " + fullName);
  9. return null;
  10. }
  11. List<PostponedComponentParse> postponedList = new ArrayList<>();
  12. TemplateNode node = parseComponent(componentMeta, prefix, name, elem, postponedList,
  13. new MapSubstitutions(new HashMap<>()));
  14. completeComponentParsing(postponedList, componentMeta, elem);
  15. position = elem.getEnd();
  16. return node;
  17. }

代码示例来源:origin: org.teavm.flavour/teavm-flavour-templates

  1. private TemplateNode parseComponent(Element elem) {
  2. int prefixLength = elem.getName().indexOf(':');
  3. String prefix = elem.getName().substring(0, prefixLength);
  4. String name = elem.getName().substring(prefixLength + 1);
  5. String fullName = prefix + ":" + name;
  6. ElementComponentMetadata componentMeta = resolveComponent(prefix, name);
  7. if (componentMeta == null) {
  8. error(elem.getStartTag().getNameSegment(), "Undefined component " + fullName);
  9. return null;
  10. }
  11. List<PostponedComponentParse> postponedList = new ArrayList<>();
  12. TemplateNode node = parseComponent(componentMeta, prefix, name, elem, postponedList,
  13. new MapSubstitutions(new HashMap<>()));
  14. completeComponentParsing(postponedList, componentMeta, elem);
  15. position = elem.getEnd();
  16. return node;
  17. }

代码示例来源:origin: org.teavm.flavour/teavm-flavour-templates

  1. private void parseTag(Tag tag, List<TemplateNode> result, Predicate<Element> filter) {
  2. if (tag instanceof StartTag) {
  3. StartTag startTag = (StartTag) tag;
  4. if (startTag.getStartTagType() == StartTagType.XML_PROCESSING_INSTRUCTION) {
  5. parseProcessingInstruction(startTag);
  6. } else if (startTag.getStartTagType() == StartTagType.NORMAL) {
  7. if (filter.test(tag.getElement())) {
  8. TemplateNode node = parseElement(tag.getElement());
  9. if (node != null) {
  10. result.add(node);
  11. }
  12. } else {
  13. position = tag.getElement().getEnd();
  14. }
  15. }
  16. }
  17. }

代码示例来源:origin: konsoletyper/teavm-flavour

  1. private void parseTag(Tag tag, List<TemplateNode> result, Predicate<Element> filter) {
  2. if (tag instanceof StartTag) {
  3. StartTag startTag = (StartTag) tag;
  4. if (startTag.getStartTagType() == StartTagType.XML_PROCESSING_INSTRUCTION) {
  5. parseProcessingInstruction(startTag);
  6. } else if (startTag.getStartTagType() == StartTagType.NORMAL) {
  7. if (filter.test(tag.getElement())) {
  8. TemplateNode node = parseElement(tag.getElement());
  9. if (node != null) {
  10. result.add(node);
  11. }
  12. } else {
  13. position = tag.getElement().getEnd();
  14. }
  15. }
  16. }
  17. }

代码示例来源:origin: net.htmlparser.jericho/jericho-html

  1. if (!elementContainsMarkup) {
  2. final Element element=tag.getElement();
  3. if (element!=null && element.getEnd()>tag.getEnd()) nodeIterator.skipToPos(element.getEnd());
  4. final StartTag startTag=(StartTag)tag;
  5. if (tag.name==HTMLElementName.SCRIPT || tag.name==HTMLElementName.STYLE || excludeElement(startTag) || (excludeNonHTMLElements && !HTMLElements.getElementNames().contains(tag.name))) {
  6. nodeIterator.skipToPos(startTag.getElement().getEnd());
  7. continue;

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

  1. document.insert(element.getEnd(), buf.toString()); // 插入结束指令

代码示例来源:origin: com.github.httl/httl

  1. document.insert(element.getEnd(), buf.toString()); // 插入结束指令

代码示例来源:origin: com.github.cfparser/cfml.parsing

  1. int endPosition = element.getEnd();
  2. String name = element.getName();
  3. String itemData = element.getTextExtractor().toString();

代码示例来源:origin: konsoletyper/teavm-flavour

  1. private ComponentBinding parseComponent(ElementComponentMetadata componentMeta, String prefix, String name,
  2. Element elem, List<PostponedComponentParse> postponed, MapSubstitutions typeVars) {
  3. ComponentBinding component = new ComponentBinding(componentMeta.cls.getName(), name);
  4. component.setLocation(new Location(elem.getBegin(), elem.getEnd()));
  5. if (componentMeta.nameSetter != null) {
  6. component.setElementNameMethodName(componentMeta.nameSetter.getName());
  7. postponed.add(componentParse);
  8. parseSegment(elem.getEnd(), new ArrayList<>(), child -> {
  9. int nestedPrefixLength = child.getName().indexOf(':');
  10. if (nestedPrefixLength > 0) {

代码示例来源:origin: org.teavm.flavour/teavm-flavour-templates

  1. private ComponentBinding parseComponent(ElementComponentMetadata componentMeta, String prefix, String name,
  2. Element elem, List<PostponedComponentParse> postponed, MapSubstitutions typeVars) {
  3. ComponentBinding component = new ComponentBinding(componentMeta.cls.getName(), name);
  4. component.setLocation(new Location(elem.getBegin(), elem.getEnd()));
  5. if (componentMeta.nameSetter != null) {
  6. component.setElementNameMethodName(componentMeta.nameSetter.getName());
  7. postponed.add(componentParse);
  8. parseSegment(elem.getEnd(), new ArrayList<>(), child -> {
  9. int nestedPrefixLength = child.getName().indexOf(':');
  10. if (nestedPrefixLength > 0) {

代码示例来源:origin: konsoletyper/teavm-flavour

  1. private TemplateNode parseDomElement(Element elem) {
  2. DOMElement templateElem = new DOMElement(elem.getName());
  3. templateElem.setLocation(new Location(elem.getBegin(), elem.getEnd()));
  4. for (int i = 0; i < elem.getAttributes().size(); ++i) {
  5. Attribute attr = elem.getAttributes().get(i);
  6. if (attr.getName().indexOf(':') > 0) {
  7. AttributeComponentBinding component = parseAttributeComponent(attr);
  8. if (component != null) {
  9. templateElem.getAttributeComponents().add(component);
  10. }
  11. } else {
  12. templateElem.setAttribute(attr.getName(), attr.getValue(),
  13. new Location(attr.getBegin(), attr.getEnd()));
  14. }
  15. }
  16. Set<String> vars = new HashSet<>();
  17. for (AttributeComponentBinding attrComponent : templateElem.getAttributeComponents()) {
  18. for (ComponentVariableBinding var : attrComponent.getVariables()) {
  19. vars.add(var.getName());
  20. pushVar(var.getName(), var.getValueType());
  21. }
  22. }
  23. parseSegment(elem.getEnd(), templateElem.getChildNodes(), child -> true);
  24. for (String var : vars) {
  25. popVar(var);
  26. }
  27. return templateElem;
  28. }

代码示例来源:origin: org.teavm.flavour/teavm-flavour-templates

  1. private TemplateNode parseDomElement(Element elem) {
  2. DOMElement templateElem = new DOMElement(elem.getName());
  3. templateElem.setLocation(new Location(elem.getBegin(), elem.getEnd()));
  4. for (int i = 0; i < elem.getAttributes().size(); ++i) {
  5. Attribute attr = elem.getAttributes().get(i);
  6. if (attr.getName().indexOf(':') > 0) {
  7. AttributeComponentBinding component = parseAttributeComponent(attr);
  8. if (component != null) {
  9. templateElem.getAttributeComponents().add(component);
  10. }
  11. } else {
  12. templateElem.setAttribute(attr.getName(), attr.getValue(),
  13. new Location(attr.getBegin(), attr.getEnd()));
  14. }
  15. }
  16. Set<String> vars = new HashSet<>();
  17. for (AttributeComponentBinding attrComponent : templateElem.getAttributeComponents()) {
  18. for (ComponentVariableBinding var : attrComponent.getVariables()) {
  19. vars.add(var.getName());
  20. pushVar(var.getName(), var.getValueType());
  21. }
  22. }
  23. parseSegment(elem.getEnd(), templateElem.getChildNodes(), child -> true);
  24. for (String var : vars) {
  25. popVar(var);
  26. }
  27. return templateElem;
  28. }

代码示例来源:origin: org.teavm.flavour/teavm-flavour-templates

  1. for (PostponedComponentParse parse : postponed) {
  2. position = parse.position;
  3. parseSegment(parse.elem.getEnd(), parse.component.getContentNodes(),
  4. child -> !elementsToSkip.contains(child));

代码示例来源:origin: konsoletyper/teavm-flavour

  1. for (PostponedComponentParse parse : postponed) {
  2. position = parse.position;
  3. parseSegment(parse.elem.getEnd(), parse.component.getContentNodes(),
  4. child -> !elementsToSkip.contains(child));

相关文章