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

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

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

Element.getStartTag介绍

[英]Returns the start tag of the element.
[中]返回元素的开始标记。

代码示例

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

  1. /**
  2. * Returns the attributes specified in this element's start tag.
  3. * <p>
  4. * This is equivalent to {@link #getStartTag()}<code>.</code>{@link StartTag#getAttributes() getAttributes()}.
  5. *
  6. * @return the attributes specified in this element's start tag.
  7. * @see StartTag#getAttributes()
  8. */
  9. public Attributes getAttributes() {
  10. return getStartTag().getAttributes();
  11. }

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

  1. public void process(Processor x, Element element) throws IOException {
  2. if (!x.includeAlternateText) return;
  3. String text=x.renderer.renderAlternateText(element.getStartTag());
  4. if (text==null) return;
  5. x.appendText(text);
  6. }
  7. }

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

  1. /**
  2. * Returns the {@linkplain CharacterReference#decode(CharSequence) decoded} value of the attribute with the specified name (case insensitive).
  3. * <p>
  4. * Returns <code>null</code> if the {@linkplain #getStartTag() start tag of this element} does not
  5. * {@linkplain StartTagType#hasAttributes() have attributes},
  6. * no attribute with the specified name exists or the attribute {@linkplain Attribute#hasValue() has no value}.
  7. * <p>
  8. * This is equivalent to {@link #getStartTag()}<code>.</code>{@link StartTag#getAttributeValue(String) getAttributeValue(attributeName)}.
  9. *
  10. * @param attributeName the name of the attribute to get.
  11. * @return the {@linkplain CharacterReference#decode(CharSequence) decoded} value of the attribute with the specified name, or <code>null</code> if the attribute does not exist or {@linkplain Attribute#hasValue() has no value}.
  12. */
  13. public String getAttributeValue(final String attributeName) {
  14. return getStartTag().getAttributeValue(attributeName);
  15. }

代码示例来源:origin: VueGWT/vue-gwt

  1. /**
  2. * Find the corresponding TypeMirror from Elemental2 for a given DOM Element
  3. *
  4. * @param element The element we want the TypeMirror of
  5. * @return The type mirror
  6. */
  7. private TypeMirror getTypeFromDOMElement(Element element) {
  8. return DOMElementsUtil
  9. .getTypeForElementTag(element.getStartTag().getName())
  10. .map(Class::getCanonicalName)
  11. .map(elements::getTypeElement)
  12. .map(TypeElement::asType)
  13. .orElse(null);
  14. }

代码示例来源:origin: VueGWT/vue-gwt

  1. private Optional<Map<String, Class<?>>> getPropertiesForDOMElement(Element element) {
  2. return DOMElementsUtil
  3. .getTypeForElementTag(element.getStartTag().getName())
  4. .map(DOMElementsUtil::getElementProperties);
  5. }

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

  1. @Override
  2. public void element(final Element element, final Context context, final BugList bugs) {
  3. if ("script".equals(element.getName())) {
  4. final String src = element.getStartTag().toString();
  5. if (!src.matches(".*src=.*")) {
  6. context.addMessage("AVOID_USING_INLINE_JS", null);
  7. }
  8. }
  9. }
  10. }

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

  1. @Override
  2. public void element(final Element element, final Context context, final BugList bugs) {
  3. if ("script".equals(element.getName())) {
  4. final String src = element.getStartTag().toString();
  5. if (!src.matches(".*src=.*")) {
  6. context.addMessage("AVOID_USING_INLINE_JS", null);
  7. }
  8. }
  9. }
  10. }

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

  1. private static ElementHandler getElementHandler(final Element element) {
  2. if (element.getStartTag().getStartTagType().isServerTag()) return RemoveElementHandler.INSTANCE; // hard-coded configuration does not include server tags in child element hierarchy, so this is normally not executed.
  3. ElementHandler elementHandler=ELEMENT_HANDLERS.get(element.getName());
  4. return (elementHandler!=null) ? elementHandler : StandardInlineElementHandler.INSTANCE;
  5. }

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

  1. @Override
  2. public void element(final Element element, final Context context, final BugList bugs) {
  3. if (element.getName().equals(CF.CFSET)) {
  4. final String content = element.getStartTag().getTagContent().toString();
  5. if (content.toLowerCase().contains("arraynew(1)")) {
  6. context.addMessage("AVOID_USING_ARRAYNEW", null);
  7. }
  8. }
  9. }

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

  1. @Override
  2. public void element(final Element element, final Context context, final BugList bugs) {
  3. if (element.getName().equals(CF.CFSET)) {
  4. final String content = element.getStartTag().getTagContent().toString();
  5. if (content.toLowerCase().contains("arraynew(1)")) {
  6. context.addMessage("AVOID_USING_ARRAYNEW", null);
  7. }
  8. }
  9. }

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

  1. public int offset() {
  2. if (element != null) {
  3. if (element.getName().equalsIgnoreCase(CF.CFSCRIPT)) {
  4. return element.getStartTag().getEnd();
  5. } else if (element.getName().equalsIgnoreCase(CF.CFSET)) {
  6. return element.getStartTag().getTagContent().getBegin() + 1;
  7. }
  8. return element.getBegin();
  9. } else {
  10. return 0;
  11. }
  12. }

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

  1. public int offset() {
  2. if (element != null) {
  3. if (element.getName().equalsIgnoreCase(CF.CFSCRIPT)) {
  4. return element.getStartTag().getEnd();
  5. } else if (element.getName().equalsIgnoreCase(CF.CFSET)) {
  6. return element.getStartTag().getTagContent().getBegin() + 1;
  7. }
  8. return element.getBegin();
  9. } else {
  10. return 0;
  11. }
  12. }

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

  1. private void appendElementContent(final Element element) throws IOException {
  2. final int contentEnd=element.getContentEnd();
  3. if (element.isEmpty() || renderedIndex>=contentEnd) return;
  4. final int contentBegin=element.getStartTag().end;
  5. appendSegmentProcessingChildElements(Math.max(renderedIndex,contentBegin),contentEnd,element.getChildElements());
  6. }

代码示例来源:origin: wala/WALA

  1. private Map<String, Pair<String, Position>> makeAllAttributes() {
  2. Map<String, Pair<String, Position>> result = HashMapFactory.make();
  3. if (innerElement.getStartTag().getAttributes() != null) {
  4. for (Attribute a : innerElement.getStartTag().getAttributes()) {
  5. result.put(
  6. a.getName().toLowerCase(),
  7. Pair.make(a.getValue(), getPosition(a.getValueSegment())));
  8. }
  9. }
  10. return result;
  11. }

代码示例来源:origin: com.ibm.wala/com.ibm.wala.cast.js

  1. private Map<String, Pair<String, Position>> makeAllAttributes() {
  2. Map<String, Pair<String, Position>> result = HashMapFactory.make();
  3. if (innerElement.getStartTag().getAttributes() != null) {
  4. for (Attribute a : innerElement.getStartTag().getAttributes()) {
  5. result.put(
  6. a.getName().toLowerCase(),
  7. Pair.make(a.getValue(), getPosition(a.getValueSegment())));
  8. }
  9. }
  10. return result;
  11. }

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

  1. private boolean inlinable(final Element element) {
  2. // returns true if the specified element should be inlined
  3. final StartTagType startTagType=element.getStartTag().getStartTagType();
  4. // if (startTagType==StartTagType.DOCTYPE_DECLARATION) return false; // this was removed because it caused an extra line break if the DOCTYPE is preceeded by a server tag
  5. if (startTagType!=StartTagType.NORMAL) return true;
  6. // element is a normal type
  7. final String elementName=element.getName();
  8. if (elementName==HTMLElementName.SCRIPT) return !indentScriptElements;
  9. if (removeLineBreaks && !HTMLElements.getElementNames().contains(elementName)) return true; // inline non-HTML elements if removing line breaks
  10. if (!HTMLElements.getInlineLevelElementNames().contains(elementName)) return false;
  11. // element is inline type
  12. if (elementName==HTMLElementName.TEXTAREA) return false; // TEXTAREA is theoretically inlinable but we want to format its content in the same was as PRE, and this is easiest when the entire element is treated like a block PRE element.
  13. if (removeLineBreaks) return true;
  14. return containsOnlyInlineLevelChildElements(element); // only inline if it doesn't illegally contain non-inline elements
  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: VueGWT/vue-gwt

  1. /**
  2. * Return the {@link LocalComponent} definition for a given DOM {@link Element}
  3. *
  4. * @param element Current element being processed
  5. * @return An Optional {@link LocalComponent}
  6. */
  7. private Optional<LocalComponent> getLocalComponentForElement(Element element) {
  8. String componentName = element.getAttributes().getValue("is");
  9. if (componentName == null) {
  10. componentName = element.getStartTag().getName();
  11. }
  12. return context.getLocalComponent(componentName);
  13. }

代码示例来源: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: 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. }

相关文章