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

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

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

Element.toString介绍

暂无

代码示例

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

  1. @Override
  2. public String toString() {
  3. return innerElement.toString();
  4. }

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

  1. @Override
  2. public String toString() {
  3. return innerElement.toString();
  4. }

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

  1. /**
  2. * Register any overrides from comment elements before functions/components.
  3. *
  4. * @param context
  5. * The current context.
  6. * @param commentElement
  7. * The CFML comment element
  8. */
  9. protected void applyRuleOverrides(final Context context, final Element commentElement) {
  10. if (commentElement != null && CF.COMMENT.equals(commentElement.getName())) {
  11. final String mlText = commentElement.toString();
  12. final Pattern pattern = Pattern.compile(".*\\s*@CFLintIgnore\\s+([\\w,_]+)\\s*.*", Pattern.DOTALL);
  13. final Matcher matcher = pattern.matcher(mlText);
  14. if (matcher.matches()) {
  15. final String ignoreCodes = matcher.group(1);
  16. context.ignore(Arrays.asList(ignoreCodes.split(",\\s*")));
  17. }
  18. }
  19. }

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

  1. /**
  2. * Register any overrides from comment elements before functions/components.
  3. *
  4. * @param context
  5. * The current context.
  6. * @param commentElement
  7. * The CFML comment element
  8. */
  9. protected void applyRuleOverrides(final Context context, final Element commentElement) {
  10. if (commentElement != null && CF.COMMENT.equals(commentElement.getName())) {
  11. final String mlText = commentElement.toString();
  12. final Pattern pattern = Pattern.compile(".*\\s*@CFLintIgnore\\s+([\\w,_]+)\\s*.*", Pattern.DOTALL);
  13. final Matcher matcher = pattern.matcher(mlText);
  14. if (matcher.matches()) {
  15. final String ignoreCodes = matcher.group(1);
  16. context.ignore(Arrays.asList(ignoreCodes.split(",\\s*")));
  17. }
  18. }
  19. }

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

  1. if (prevSibling != null && prevSibling.getName().equals(CF.COMMENT)) {
  2. final Pattern p = Pattern.compile(".*---\\s*CFLINT-DISABLE\\s+(.*)\\s*---.*");
  3. final Matcher m = p.matcher(prevSibling.toString().toUpperCase().trim());
  4. if (m.matches()) {

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

  1. if (prevSibling != null && prevSibling.getName().equals(CF.COMMENT)) {
  2. final Pattern p = Pattern.compile(".*---\\s*CFLINT-DISABLE\\s+(.*)\\s*---.*");
  3. final Matcher m = p.matcher(prevSibling.toString().toUpperCase().trim());
  4. if (m.matches()) {

代码示例来源: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: 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: 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) != null
  5. ? element.getAttributeValue(CF.NAME) : "";
  6. ArgInfo argInfo = new ArgInfo();
  7. argInfo.casedName=name;
  8. argInfo.argumentLineNo=context.startLine();
  9. argInfo.argumentOffset=element.getAttributeValue(CF.NAME) != null
  10. ? element.getAttributes().get(CF.NAME).getValueSegment().getBegin() : element.getBegin();
  11. argInfo.type=element.getAttributeValue(CF.TYPE);
  12. currentArgs.put(name.toLowerCase(), argInfo);
  13. final String code = element.getParentElement().toString();
  14. if (isUsed(code, name.toLowerCase())) {
  15. argInfo.used=true;
  16. }
  17. }
  18. }

代码示例来源: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) != null
  5. ? element.getAttributeValue(CF.NAME) : "";
  6. ArgInfo argInfo = new ArgInfo();
  7. argInfo.casedName=name;
  8. argInfo.argumentLineNo=context.startLine();
  9. argInfo.argumentOffset=element.getAttributeValue(CF.NAME) != null
  10. ? element.getAttributes().get(CF.NAME).getValueSegment().getBegin() : element.getBegin();
  11. argInfo.type=element.getAttributeValue(CF.TYPE);
  12. currentArgs.put(name.toLowerCase(), argInfo);
  13. final String code = element.getParentElement().toString();
  14. if (isUsed(code, name.toLowerCase())) {
  15. argInfo.used=true;
  16. }
  17. }
  18. }

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

  1. visitor.visitElementStart(elem);
  2. if (elem.getName().equalsIgnoreCase("cfset") || elem.getName().equalsIgnoreCase("cfreturn")) {
  3. final String cfscript = elem.toString().substring(elem.getName().length() + 1, elem.toString().length() - 1).trim();
  4. if (cfscript.length() > 0 && visitor.visitPreParseExpression("TAG", cfscript)) {
  5. final CFExpression expression = parseCFExpression(cfscript, visitor);
  6. final int uglyNotPos = elem.toString().lastIndexOf("<>");
  7. int endPos = elem.getStartTag().getEnd() - 1;
  8. final int nextPos = elem.toString().indexOf(">", uglyNotPos + 2);
  9. if (nextPos > 0 && nextPos < elem.getEndTag().getBegin()) {
  10. endPos = nextPos;
  11. final String cfscript = elem.toString().substring(elem.getName().length() + 1, endPos);
  12. if (cfscript.length() > 0 && visitor.visitPreParseExpression("TAG", cfscript)) {
  13. final CFExpression expression = parseCFExpression(cfscript, visitor);

代码示例来源: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. final String code = element.getParentElement().toString();
  8. final boolean checked = isCheck(code, name);
  9. if (!required && defaultExpr == null && !checked) {
  10. element.getSource().getRow(element.getBegin());
  11. element.getSource().getColumn(element.getBegin());
  12. context.addMessage("ARG_DEFAULT_MISSING", name);
  13. }
  14. }
  15. }

代码示例来源: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. final String code = element.getParentElement().toString();
  8. final boolean checked = isCheck(code, name);
  9. if (!required && defaultExpr == null && !checked) {
  10. element.getSource().getRow(element.getBegin());
  11. element.getSource().getColumn(element.getBegin());
  12. context.addMessage("ARG_DEFAULT_MISSING", name);
  13. }
  14. }
  15. }

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

  1. bldr.setExpression(((CFScriptStatement) expression).Decompile(0));
  2. } else if (elem != null) {
  3. bldr.setExpression(elem.toString().replaceAll("\r\n", "\n"));

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

  1. bldr.setExpression(((CFScriptStatement) expression).Decompile(0));
  2. } else if (elem != null) {
  3. bldr.setExpression(elem.toString().replaceAll("\r\n", "\n"));

相关文章