Examples of sectionTitle2()


Examples of org.apache.maven.doxia.sink.Sink.sectionTitle2()

    private void constructSummarySection( List<? extends BuildJob> buildJobs, Locale locale )
    {
        Sink sink = getSink();

        sink.section2();
        sink.sectionTitle2();

        sink.text( getText( locale, "report.invoker.summary.title" ) );

        sink.sectionTitle2_();
        sink.section2_();
View Full Code Here

Examples of org.apache.maven.doxia.siterenderer.sink.SiteRendererSink.sectionTitle2()

        sink.link_();
        sink.text( " " + desc2 );
        sink.paragraph_();

        sink.section2();
        sink.sectionTitle2();
        Locale locale = siteRenderingContext.getLocale();
        sink.text( i18n.getString( "site-plugin", locale, "report.category.sectionTitle" ) );
        sink.sectionTitle2_();

        sink.table();
View Full Code Here

Examples of org.apache.maven.doxia.siterenderer.sink.SiteRendererSink.sectionTitle2()

        sink.link_();
        sink.text( " " + desc2 );
        sink.paragraph_();

        sink.section2();
        sink.sectionTitle2();
        Locale locale = siteRenderingContext.getLocale();
        sink.text( i18n.getString( "site-plugin", locale, "report.category.sectionTitle" ) );
        sink.sectionTitle2_();

        sink.table();
View Full Code Here

Examples of org.apache.maven.doxia.siterenderer.sink.SiteRendererSink.sectionTitle2()

        sink.link_();
        sink.text( " " + desc2 );
        sink.paragraph_();

        sink.section2();
        sink.sectionTitle2();
        Locale locale = siteRenderingContext.getLocale();
        sink.text( i18n.getString( "site-plugin", locale, "report.category.sectionTitle" ) );
        sink.sectionTitle2_();

        sink.table();
View Full Code Here

Examples of org.codehaus.doxia.sink.Sink.sectionTitle2()

                        sink.list_();
                        sink.section2_();
                    }

                    sink.section2();
                    sink.sectionTitle2();
                    sink.text(StringUtils.capitalize(subpackage));
                    sink.sectionTitle2_();


                    sink.list();
View Full Code Here

Examples of org.codehaus.doxia.sink.Sink.sectionTitle2()

          for (JavaMethod mth : clazz.getMethods()) {
            if (hasPathAnnotation(mth)) {
              for (Annotation annotation : mth.getAnnotations()) {
                if (annotation.getParameterValue().toString().contains("javax.ws.rs.Path")) {
                  sink.section2();
                  sink.sectionTitle2();
                  sink.text("Path: " + annotation.getNamedParameter("value"));
                  sink.sectionTitle2_();
                }
              }
              for (Annotation annotation : mth.getAnnotations()) {
View Full Code Here

Examples of org.codehaus.doxia.sink.Sink.sectionTitle2()

                        sink.list_();
                        sink.section2_();
                    }

                    sink.section2();
                    sink.sectionTitle2();
                    sink.text(StringUtils.capitalize(subpackage));
                    sink.sectionTitle2_();


                    sink.list();
View Full Code Here

Examples of org.codehaus.doxia.sink.Sink.sectionTitle2()

        sink.text(this.getBundle(locale).getString("meta.description"));
        sink.lineBreak();
        sink.text(this.getProject().getName() + " Version: " + this.getProject().getVersion());
        sink.paragraph_();
        sink.section2();
        sink.sectionTitle2();
        sink.text(this.getBundle(locale).getString("meta.title"));
        sink.sectionTitle2_();
        sink.text("Date: " + jmdReport.getDate());
        sink.lineBreak();
        sink.text("Architect: " + jmdReport.getArchitect());
View Full Code Here

Examples of org.codehaus.doxia.sink.Sink.sectionTitle2()

        sink.lineBreak();
        sink.text("Differences found: " + jmdReport.getDifferences().size());
        sink.section2_();
       
        sink.section2();
        sink.sectionTitle2();
        sink.text(this.getBundle(locale).getString("differences.title"));
        sink.sectionTitle2_();
       
        sink.section3();
        sink.sectionTitle3();
View Full Code Here

Examples of org.codehaus.doxia.sink.Sink.sectionTitle2()

        sink.lineBreak();
        sink.text("Differences found: " + jmdReport.getDifferences().size());
        sink.section2_();
       
        sink.section2();
        sink.sectionTitle2();
        sink.text(this.getBundle(locale).getString("differences.title"));
        sink.sectionTitle2_();
       
        sink.section3();
        sink.sectionTitle3();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.