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

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

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

Sink.table_介绍

暂无

代码示例

代码示例来源:origin: org.xwiki.rendering/xwiki-rendering-syntax-doxia

@Override
public void endTable(Map<String, String> parameters)
{
  this.sink.table_();
}

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

void renderIndexTableEnd()
{
 sink.table_();
}

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

void renderIndexTableEnd()
{
 sink.table_();
}

代码示例来源:origin: org.codehaus.mojo/javacc-maven-plugin

/**
 * Create the HTML footer for the report page.
 * 
 * @param sink The sink to write the HTML report page.
 */
private void createReportFooter( Sink sink )
{
  sink.table_();
  sink.body_();
}

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

@Override
protected void renderTableEnd(final ScenarioTestDoc scenarioRepresentant)
 throws IOException
{
 super.renderTableEnd(scenarioRepresentant);
 sink.table_();
}

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

/** {@inheritDoc} */
public  void after(  Sink sink )
{
  sink.tableRows_();
  sink.table_();
}

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

/** {@inheritDoc} */
final void after( final Sink sink )
{
  sink.tableRows_();
  sink.table_();
}

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

@Override
protected void renderTableEnd(final ScenarioTestDoc scenarioRepresentant)
 throws IOException
{
 super.renderTableEnd(scenarioRepresentant);
 sink.table_();
}

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

private void endFileSection()
{
  sink.table_();
  sink.section2_();
}

代码示例来源:origin: mojohaus/versions-maven-plugin

protected void renderPropertySummaryTable( Map<Property, PropertyVersions> map )
{
  sink.table();
  renderPropertySummaryTableHeader();
  for ( Map.Entry<Property, PropertyVersions> entry : map.entrySet() )
  {
    renderPropertySummaryTableRow( entry.getKey(), entry.getValue() );
  }
  renderPropertySummaryTableHeader();
  sink.table_();
}

代码示例来源:origin: org.codehaus.mojo/versions-maven-plugin

protected void renderPropertySummaryTable( Map<Property, PropertyVersions> map )
{
  sink.table();
  renderPropertySummaryTableHeader();
  for ( Map.Entry<Property, PropertyVersions> entry : map.entrySet() )
  {
    renderPropertySummaryTableRow( entry.getKey(), entry.getValue() );
  }
  renderPropertySummaryTableHeader();
  sink.table_();
}

代码示例来源:origin: org.codehaus.mojo/versions-maven-plugin

protected void renderDependencySummaryTable( Map<Dependency, ArtifactVersions> map, boolean includeScope,
                       boolean includeClassifier, boolean includeType )
{
  sink.table();
  renderDependencySummaryTableHeader( includeScope, includeClassifier, includeType );
  for ( Map.Entry<Dependency, ArtifactVersions> entry : map.entrySet() )
  {
    renderDependencySummaryTableRow( entry.getKey(), entry.getValue(), includeScope, includeClassifier,
                     includeType );
  }
  renderDependencySummaryTableHeader( includeScope, includeClassifier, includeType );
  sink.table_();
}

代码示例来源:origin: mojohaus/versions-maven-plugin

protected void renderDependencySummaryTable( Map<Dependency, ArtifactVersions> map, boolean includeScope,
                       boolean includeClassifier, boolean includeType )
{
  sink.table();
  renderDependencySummaryTableHeader( includeScope, includeClassifier, includeType );
  for ( Map.Entry<Dependency, ArtifactVersions> entry : map.entrySet() )
  {
    renderDependencySummaryTableRow( entry.getKey(), entry.getValue(), includeScope, includeClassifier,
                     includeType );
  }
  renderDependencySummaryTableHeader( includeScope, includeClassifier, includeType );
  sink.table_();
}

代码示例来源:origin: mojohaus/license-maven-plugin

protected void renderThirdPartySummaryTable( Collection<ThirdPartyDetails> collection, boolean includeScope,
                       boolean includeClassifier, boolean includeType )
{
  sink.table();
  renderThirdPartySummaryTableHeader( includeScope, includeClassifier, includeType );
  for ( ThirdPartyDetails details : collection )
  {
    renderThirdPartySummaryTableRow( details, includeScope, includeClassifier, includeType );
  }
  renderThirdPartySummaryTableHeader( includeScope, includeClassifier, includeType );
  sink.table_();
}

代码示例来源:origin: org.codehaus.mojo/versions-maven-plugin

private void renderSummaryTable( String titleKey, Map<Plugin, PluginUpdatesDetails> contents, String emptyKey )
{
  sink.section2();
  sink.sectionTitle2();
  sink.text( getText( titleKey ) );
  sink.sectionTitle2_();
  if ( contents.isEmpty() )
  {
    sink.paragraph();
    sink.text( getText( emptyKey ) );
    sink.paragraph_();
  }
  else
  {
    sink.table();
    renderSummaryTableHeader();
    for ( final Map.Entry<Plugin, PluginUpdatesDetails> entry : contents.entrySet() )
    {
      renderPluginSummary( entry.getKey(), entry.getValue() );
    }
    renderSummaryTableHeader();
    sink.table_();
  }
  sink.section2_();
}

代码示例来源:origin: mojohaus/versions-maven-plugin

private void renderSummaryTable( String titleKey, Map<Plugin, PluginUpdatesDetails> contents, String emptyKey )
{
  sink.section2();
  sink.sectionTitle2();
  sink.text( getText( titleKey ) );
  sink.sectionTitle2_();
  if ( contents.isEmpty() )
  {
    sink.paragraph();
    sink.text( getText( emptyKey ) );
    sink.paragraph_();
  }
  else
  {
    sink.table();
    renderSummaryTableHeader();
    for ( final Map.Entry<Plugin, PluginUpdatesDetails> entry : contents.entrySet() )
    {
      renderPluginSummary( entry.getKey(), entry.getValue() );
    }
    renderSummaryTableHeader();
    sink.table_();
  }
  sink.section2_();
}

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

sink.table_();

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

sink.table_();
sink.tableCell_();
sink.table_();

代码示例来源:origin: org.apache.maven.plugins/maven-surefire-report-plugin

sink.table_();

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

/**
 * Generate the legend table
 *
 * @param locale
 * @param sink
 */
private void generateLegend( Locale locale, Sink sink )
{
  sink.table();
  sink.tableCaption();
  sink.bold();
  sink.text( getI18nString( locale, "legend" ) );
  sink.bold_();
  sink.tableCaption_();
  sink.tableRow();
  sink.tableCell();
  iconError( locale, sink );
  sink.tableCell_();
  sink.tableCell();
  sink.text( getI18nString( locale, "legend.different" ) );
  sink.tableCell_();
  sink.tableRow_();
  sink.table_();
}

相关文章

微信公众号

最新文章

更多