gpt4 book ai didi

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

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

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

XmlWriter.of介绍

暂无

代码示例

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

@Override
public XmlWriter newXmlWriter() {
 stream.setMediaType(MediaTypes.XML);
 return XmlWriter.of(new OutputStreamWriter(output, StandardCharsets.UTF_8));
}

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

@Override
public XmlWriter newXmlWriter() {
 return XmlWriter.of(new OutputStreamWriter(output, StandardCharsets.UTF_8));
}

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

@Override
public XmlWriter newXmlWriter() {
 stream.setMediaType(XML);
 return XmlWriter.of(new OutputStreamWriter(stream.output(), UTF_8));
}

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

@Override
public XmlWriter newXmlWriter() {
 return XmlWriter.of(new OutputStreamWriter(output, StandardCharsets.UTF_8));
}

代码示例来源: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: org.sonarsource.sonarqube/sonar-server

@Override
public XmlWriter newXmlWriter() {
 stream.setMediaType(MediaTypes.XML);
 return XmlWriter.of(new OutputStreamWriter(output, StandardCharsets.UTF_8));
}

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

@Override
public XmlWriter newXmlWriter() {
 stream.setMediaType(XML);
 return XmlWriter.of(new OutputStreamWriter(stream.output(), UTF_8));
}

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

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();
}

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