本文整理汇总了Java中org.apache.maven.doxia.sink.Sink.sectionTitle2方法的典型用法代码示例。如果您正苦于以下问题:Java Sink.sectionTitle2方法的具体用法?Java Sink.sectionTitle2怎么用?Java Sink.sectionTitle2使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.maven.doxia.sink.Sink
的用法示例。
在下文中一共展示了Sink.sectionTitle2方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: reportDifferences
import org.apache.maven.doxia.sink.Sink; //导入方法依赖的package包/类
private void reportDifferences(
EnumMap<CompatibilityType, List<ReportTimeReporter.DifferenceReport>> diffsPerType, Sink sink,
ResourceBundle bundle, String typeKey) {
if (diffsPerType == null || diffsPerType.isEmpty()) {
return;
}
sink.section2();
sink.sectionTitle2();
sink.text(bundle.getString(typeKey));
sink.sectionTitle2_();
reportDifferences(diffsPerType.get(CompatibilityType.BINARY), sink, bundle,
"report.revapi.compatibilityType.binary");
reportDifferences(diffsPerType.get(CompatibilityType.SOURCE), sink, bundle,
"report.revapi.compatibilityType.source");
reportDifferences(diffsPerType.get(CompatibilityType.SEMANTIC), sink, bundle,
"report.revapi.compatibilityType.semantic");
reportDifferences(diffsPerType.get(CompatibilityType.OTHER), sink, bundle,
"report.revapi.compatibilityType.other");
sink.section2_();
}
示例2: reportBody
import org.apache.maven.doxia.sink.Sink; //导入方法依赖的package包/类
@Override
protected void reportBody(ReportTimeReporter reporterWithResults, API oldAPI, API newAPI, Sink sink,
ResourceBundle messages) {
if (oldAPI == null || newAPI == null) {
return;
}
sink.section2();
sink.sectionTitle2();
String title = messages.getString("report.revapi.aggregate.subTitle");
sink.rawText(MessageFormat.format(title, niceList(oldAPI.getArchives()), niceList(newAPI.getArchives())));
sink.sectionTitle2_();
super.reportBody(reporterWithResults, oldAPI, newAPI, sink, messages);
sink.section2_();
}
示例3: heading2
import org.apache.maven.doxia.sink.Sink; //导入方法依赖的package包/类
private void heading2(final Sink sink, final String string) {
sink.section2();
sink.sectionTitle2();
sink.text(string);
sink.sectionTitle2_();
sink.section2_();
}