org.apache.maven.doxia.sink.Sink.section4_()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(1.6k)|赞(0)|评价(0)|浏览(231)

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

Sink.section4_介绍

暂无

代码示例

代码示例来源:origin: org.apache.maven.plugins/maven-project-info-reports-plugin

  1. break;
  2. case 4:
  3. sink.section4_();
  4. break;
  5. case 5:

代码示例来源:origin: de.smartics.testdoc/testdoc-maven-report-plugin

  1. void renderSectionEnd(final int level)
  2. {
  3. switch (level)
  4. {
  5. case 1:
  6. sink.section1_();
  7. break;
  8. case 2:
  9. sink.section2_();
  10. break;
  11. case 3:
  12. sink.section3_();
  13. break;
  14. case 4:
  15. sink.section4_();
  16. break;
  17. case 5:
  18. sink.section5_();
  19. break;
  20. default:
  21. sink.section5_();
  22. break;
  23. }
  24. }

代码示例来源:origin: de.smartics.testdoc/maven-testdoc-report-plugin

  1. void renderSectionEnd(final int level)
  2. {
  3. switch (level)
  4. {
  5. case 1:
  6. sink.section1_();
  7. break;
  8. case 2:
  9. sink.section2_();
  10. break;
  11. case 3:
  12. sink.section3_();
  13. break;
  14. case 4:
  15. sink.section4_();
  16. break;
  17. case 5:
  18. sink.section5_();
  19. break;
  20. default:
  21. sink.section5_();
  22. break;
  23. }
  24. }

代码示例来源:origin: org.apache.maven.doxia/doxia-module-xdoc

  1. /**
  2. * Close open h4, h5, h6 sections.
  3. */
  4. private void closeOpenSections( int newLevel, Sink sink )
  5. {
  6. while ( getSectionLevel() >= newLevel )
  7. {
  8. if ( getSectionLevel() == Sink.SECTION_LEVEL_5 )
  9. {
  10. sink.section5_();
  11. }
  12. else if ( getSectionLevel() == Sink.SECTION_LEVEL_4 )
  13. {
  14. sink.section4_();
  15. }
  16. else if ( getSectionLevel() == Sink.SECTION_LEVEL_3 )
  17. {
  18. sink.section3_();
  19. }
  20. else if ( getSectionLevel() == Sink.SECTION_LEVEL_2 )
  21. {
  22. sink.section2_();
  23. }
  24. setSectionLevel( getSectionLevel() - 1 );
  25. }
  26. }

代码示例来源:origin: kreyssel/selenium2-visualdiff

  1. sink.table_();
  2. sink.section4_();

代码示例来源:origin: org.apache.maven.doxia/doxia-module-confluence

  1. sink.section4_();

相关文章