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

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

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

Element.getName介绍

[英]Returns the StartTag#getName() of the #getStartTag() of this element, always in lower case.

This is equivalent to #getStartTag(). StartTag#getName().

See the Tag#getName() method for more information.
[中]返回此元素的#getStartTag()的StartTag#getName(),始终以小写形式。
这相当于#getStartTag().StartTag#getName()。
有关更多信息,请参阅标记#getName()方法。

代码示例

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

  1. @SuppressWarnings("unchecked")
  2. private void checkAttributes(final Element element, final CFLintConfiguration configuration) {
  3. for (String tagInfo : (List<String>)configuration.getParameter(this,"usedTagAttributes", List.class)) {
  4. final String[] parts = (tagInfo + "//").split("/");
  5. if (element.getName() != null && parts[0].equalsIgnoreCase(element.getName())) {
  6. final String name = element.getAttributeValue(parts[1]);
  7. if (name != null && localVariables.containsKey(name.toLowerCase())) {
  8. localVariables.put(name.toLowerCase(), new VarInfo(name, true));
  9. }
  10. }
  11. }
  12. }

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

  1. @Override
  2. public void element(final Element element, final Context context, final BugList bugs) {
  3. final String tagName = element.getName();
  4. if (tagName.equals(CF.CFQUERY)) {
  5. String queryGuts = element.getContent().toString().replaceAll("\\s+", "");
  6. queryGuts = queryGuts.toLowerCase();
  7. if (queryGuts.contains(selectStar)) {
  8. context.addMessage("SQL_SELECT_STAR", null);
  9. }
  10. }
  11. }
  12. }

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

  1. private TemplateNode parseElement(Element elem) {
  2. if (elem.getName().indexOf(':') > 0) {
  3. return parseComponent(elem);
  4. } else {
  5. return parseDomElement(elem);
  6. }
  7. }

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

  1. /**
  2. * Parse a CF component tag declaration to see if it's missing a hint.
  3. */
  4. @Override
  5. public void element(final Element element, final Context context, final BugList bugs) {
  6. if (element.getName().equals(CF.CFCOMPONENT)) {
  7. final String hint = element.getAttributeValue(CF.HINT);
  8. if (hint == null || hint.trim().isEmpty()) {
  9. context.addMessage(COMPONENT_HINT_MISSING, context.calcComponentName());
  10. }
  11. }
  12. }

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

  1. private boolean containsOnlyInlineLevelChildElements(final Element element) {
  2. // returns true if the element contains only inline-level elements except for SCRIPT elements.
  3. final Collection<Element> childElements=element.getChildElements();
  4. if (childElements.isEmpty()) return true;
  5. for (Element childElement : childElements) {
  6. final String elementName=childElement.getName();
  7. if (elementName==HTMLElementName.SCRIPT || !HTMLElements.getInlineLevelElementNames().contains(elementName)) return false;
  8. if (!containsOnlyInlineLevelChildElements(childElement)) return false;
  9. }
  10. return true;
  11. }
  12. }

代码示例来源: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: cflint/CFLint

  1. @Override
  2. public void element(final Element element, final Context context, final BugList bugs) {
  3. final String elementName = element.getName();
  4. if (elementName.equals(CF.CFCOMPONENT)) {
  5. // this includes whitespace-change it
  6. final int total = element.getContent().toString().split("\\n").length;
  7. checkSize(LENGTH_THRESHOLD, "EXCESSIVE_COMPONENT_LENGTH", context, 1, 0, total, bugs);
  8. }
  9. }
  10. }

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

  1. /**
  2. * Parse a CF argument tag to see if the argument hint is missing.
  3. */
  4. @Override
  5. public void element(final Element element, final Context context, final BugList bugs) {
  6. if (element.getName().equals(CF.CFARGUMENT)) {
  7. final String name = element.getAttributeValue(CF.NAME);
  8. final String hint = element.getAttributeValue(CF.HINT);
  9. if (hint == null || hint.length() == 0) {
  10. context.addMessage("ARG_HINT_MISSING", name);
  11. }
  12. }
  13. }

代码示例来源: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.CFFUNCTION) && !trivalFunction(context.getFunctionName())) {
  4. functionCount++;
  5. checkNumberFunctions(functionCount, 1, 0, context, bugs, null);
  6. }
  7. }

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

  1. @Override
  2. public void element(final Element element, final Context context, final BugList bugs) {
  3. if (element.getName().equals(CF.CFFUNCTION) && !trivalFunction(context.getFunctionName())) {
  4. functionCount++;
  5. checkNumberFunctions(functionCount, 1, 0, context, bugs, null);
  6. }
  7. }

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

  1. @Override
  2. public void element(final Element element, final Context context, final BugList bugs) {
  3. final String tagName = element.getName();
  4. final String cfmlTagCheck = context.getConfiguration().getParameter(this,"tagName");
  5. final String scope = context.getConfiguration().getParameter(this,"scope");
  6. if (cfmlTagCheck != null && tagName.matches(cfmlTagCheck)) {
  7. if (scope == null || scope.equals(CF.COMPONENT) && context.isInComponent()) {
  8. context.addMessage("AVOID_USING_" + tagName.toUpperCase() + "_TAG", tagName);
  9. }
  10. }
  11. }
  12. }

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

  1. @Override
  2. public void element(final Element element, final Context context, final BugList bugs) {
  3. final String tagName = element.getName();
  4. final String cfmlTagCheck = context.getConfiguration().getParameter(this,"tagName");
  5. final String scope = context.getConfiguration().getParameter(this,"scope");
  6. if (cfmlTagCheck != null && tagName.matches(cfmlTagCheck)) {
  7. if (scope == null || scope.equals(CF.COMPONENT) && context.isInComponent()) {
  8. context.addMessage("AVOID_USING_" + tagName.toUpperCase() + "_TAG", tagName);
  9. }
  10. }
  11. }
  12. }

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

  1. /**
  2. * Parse CF component tag declaration to see if the component name is invalid.
  3. */
  4. @Override
  5. public void element(final Element element, final Context context, final BugList bugs) {
  6. if (element.getName().equals(CF.CFCOMPONENT)) {
  7. final String name = context.getFilename().replace(".cfc", "");
  8. checkNameForBugs(context, actualFileName(name), context.getFilename(), context.startLine(), element.getBegin(), bugs);
  9. }
  10. }

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

  1. @Override
  2. public void element(final Element element, final Context context, final BugList bugs) {
  3. if (element.getName().equals(CF.CFFUNCTION)) {
  4. final int begLine = element.getSource().getRow(element.getBegin());
  5. final String functionType = element.getAttributeValue("returnType");
  6. checkReturnType(functionType, begLine, context, bugs);
  7. }
  8. }

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

  1. @Override
  2. public void element(final Element element, final Context context, final BugList bugs) {
  3. if (element.getName().equals(CF.CFFUNCTION)) {
  4. final int begLine = element.getSource().getRow(element.getBegin());
  5. final String functionType = element.getAttributeValue("returnType");
  6. checkReturnType(functionType, begLine, context, bugs);
  7. }
  8. }

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

  1. @Override
  2. public void element(final Element element, final Context context, final BugList bugs) {
  3. if (element.getName().equals(CF.CFCOMPONENT)) {
  4. final String name = context.getComponentName();
  5. final String nameAttribute = element.getAttributeValue(CF.NAME);
  6. if (nameAttribute != null) {
  7. didYouMeanDisplayName(name, element.getSource().getRow(element.getBegin()), context.offset() + element.getBegin(), context, bugs);
  8. }
  9. }
  10. }

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

  1. @Override
  2. public void element(final Element element, final Context context, final BugList bugs) {
  3. if (element.getName().equals(CF.CFCOMPONENT)) {
  4. final String name = context.getComponentName();
  5. final String nameAttribute = element.getAttributeValue(CF.NAME);
  6. if (nameAttribute != null) {
  7. didYouMeanDisplayName(name, element.getSource().getRow(element.getBegin()), context.offset() + element.getBegin(), context, bugs);
  8. }
  9. }
  10. }

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

  1. @Override
  2. public void element(final Element element, final Context context, final BugList bugs) {
  3. if (element.getName().equals(CF.CFARGUMENT)) {
  4. final String name = element.getAttributeValue(CF.NAME);
  5. final boolean required = CFTool.toBoolean(element.getAttributeValue(CF.REQUIRED));
  6. final String defaultExpr = element.getAttributeValue(CF.DEFAULT);
  7. if (!required && defaultExpr == null) {
  8. element.getSource().getRow(element.getBegin());
  9. element.getSource().getColumn(element.getBegin());
  10. context.addMessage("ARG_DEFAULT_MISSING", name);
  11. }
  12. }
  13. }

相关文章