gpt4 book ai didi

org.sonar.api.utils.text.XmlWriter.begin()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-27 02:05:05 28 4
gpt4 key购买 nike

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

XmlWriter.begin介绍

暂无

代码示例

代码示例来源:origin: SonarSource/sonarqube

public XmlWriter prop(String nodeName, @Nullable String value) {
 if (value != null) {
  begin(nodeName).value(value).end();
 }
 return this;
}

代码示例来源:origin: SonarSource/sonarqube

public XmlWriter prop(String nodeName, @Nullable Number value) {
 if (value != null) {
  begin(nodeName).value(value).end();
 }
 return this;
}

代码示例来源:origin: SonarSource/sonarqube

public XmlWriter prop(String nodeName, boolean value) {
 return begin(nodeName).value(value).end();
}

代码示例来源:origin: SonarSource/sonarqube

public XmlWriter prop(String nodeName, double value) {
 return begin(nodeName).value(value).end();
}

代码示例来源:origin: SonarSource/sonarqube

public XmlWriter prop(String nodeName, long value) {
 return begin(nodeName).value(value).end();
}

代码示例来源:origin: SonarSource/sonarqube

private void writeXml(DbSession dbSession, Writer writer, QProfileDto profile, Iterator<OrgActiveRuleDto> activeRules) {
 XmlWriter xml = XmlWriter.of(writer).declaration();
 xml.begin(ATTRIBUTE_PROFILE);
 xml.prop(ATTRIBUTE_NAME, profile.getName());
 xml.prop(ATTRIBUTE_LANGUAGE, profile.getLanguage());
 xml.begin(ATTRIBUTE_RULES);
 while (activeRules.hasNext()) {
  ActiveRuleDto activeRule = activeRules.next();
  xml.begin(ATTRIBUTE_RULE);
  xml.prop(ATTRIBUTE_REPOSITORY_KEY, activeRule.getRuleKey().repository());
  xml.prop(ATTRIBUTE_KEY, activeRule.getRuleKey().rule());
  xml.prop(ATTRIBUTE_PRIORITY, activeRule.getSeverityString());
  xml.begin(ATTRIBUTE_PARAMETERS);
  for (ActiveRuleParamDto param : db.activeRuleDao().selectParamsByActiveRuleId(dbSession, activeRule.getId())) {
   xml
    .begin(ATTRIBUTE_PARAMETER)
    .prop(ATTRIBUTE_PARAMETER_KEY, param.getKey())
    .prop(ATTRIBUTE_PARAMETER_VALUE, param.getValue())
    .end();
  }
  xml.end(ATTRIBUTE_PARAMETERS);
  xml.end(ATTRIBUTE_RULE);
 }
 xml.end(ATTRIBUTE_RULES).end(ATTRIBUTE_PROFILE).close();
}

代码示例来源:origin: SonarSource/sonarqube

@Test
public void end_with_unused_parameter() {
 writer.begin("foo").end("foo").close();
 expect("<foo/>");
}

代码示例来源:origin: SonarSource/sonarqube

@Test
public void only_root() {
 writer.begin("foo").end().close();
 expect("<foo/>");
}

代码示例来源:origin: SonarSource/sonarqube

@Test
public void declaration() {
 writer.declaration().begin("foo").end().close();
 expect("<?xml version='1.0' encoding='UTF-8'?><foo/>");
}

代码示例来源:origin: SonarSource/sonarqube

@Test
public void ignore_null_values() {
 writer.begin("root")
  .prop("nullNumber", (Number) null)
  .prop("nullString", (String) null)
  .end().close();
 expect("<root/>");
}

代码示例来源:origin: SonarSource/sonarqube

@Test
 public void fail_on_NaN_value() {
  thrown.expect(WriterException.class);
  thrown.expectMessage("Fail to write XML. Double value is not valid: NaN");
  writer.begin("root").prop("foo", Double.NaN).end().close();
 }
}

代码示例来源:origin: org.codehaus.sonar/sonar-plugin-api

public XmlWriter prop(String nodeName, @Nullable String value) {
 if (value != null) {
  begin(nodeName).value(value).end();
 }
 return this;
}

代码示例来源:origin: org.codehaus.sonar/sonar-plugin-api

public XmlWriter prop(String nodeName, @Nullable Number value) {
 if (value != null) {
  begin(nodeName).value(value).end();
 }
 return this;
}

代码示例来源:origin: org.sonarsource.sonarqube/sonar-plugin-api

public XmlWriter prop(String nodeName, @Nullable Number value) {
 if (value != null) {
  begin(nodeName).value(value).end();
 }
 return this;
}

代码示例来源:origin: org.sonarsource.sonarqube/sonar-plugin-api

public XmlWriter prop(String nodeName, @Nullable String value) {
 if (value != null) {
  begin(nodeName).value(value).end();
 }
 return this;
}

代码示例来源:origin: org.codehaus.sonar/sonar-plugin-api

public XmlWriter prop(String nodeName, boolean value) {
 return begin(nodeName).value(value).end();
}

代码示例来源:origin: org.codehaus.sonar/sonar-plugin-api

public XmlWriter prop(String nodeName, long value) {
 return begin(nodeName).value(value).end();
}

代码示例来源:origin: org.sonarsource.sonarqube/sonar-plugin-api

public XmlWriter prop(String nodeName, long value) {
 return begin(nodeName).value(value).end();
}

代码示例来源:origin: org.sonarsource.sonarqube/sonar-plugin-api

public XmlWriter prop(String nodeName, double value) {
 return begin(nodeName).value(value).end();
}

代码示例来源:origin: org.codehaus.sonar/sonar-plugin-api

public XmlWriter prop(String nodeName, double value) {
 return begin(nodeName).value(value).end();
}

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com