Examples of sectionTitle1_()


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

      ResourceBundle bundle = getBundle( locale );
      Sink sink = this.getSink();
            sinkBeginReport(sink, bundle);
            sink.sectionTitle1();
          sink.text( bundle.getString( "report.fitnesse.name" ) );
          sink.sectionTitle1_();
      for(String report : reports) {
                //String html = html(report);
                Document document = Jsoup.parse(new File(this.reportsDir, report), null);
                Elements tables = document.getElementsByTag("table");
                // Is it a top-level index page?
View Full Code Here

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

            sink.head_();

            sink.section1();
            sink.sectionTitle1();
            sink.text("Component Reference");
            sink.sectionTitle1_();
            sink.list();

            String currentSubpackage = null;

            for (String className : InternalUtils.sortedKeys(descriptions))
View Full Code Here

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

        sink.body();

        sink.section1();
        sink.sectionTitle1();
        sink.text( getText( locale, "report.invoker.result.title" ) );
        sink.sectionTitle1_();
        sink.paragraph();
        sink.text( getText( locale, "report.invoker.result.description" ) );
        sink.paragraph_();
        sink.section1_();
View Full Code Here

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

        sink.body();

        sink.section1();
        sink.sectionTitle1();
        sink.text( getText( locale, "report.invoker.result.title" ) );
        sink.sectionTitle1_();
        sink.paragraph();
        sink.text( getText( locale, "report.invoker.result.description" ) );
        sink.paragraph_();
        sink.section1_();
View Full Code Here

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

        sink.section1();

        sink.sectionTitle1();
        sink.text( getI18nString( locale, "title" ) );
        sink.sectionTitle1_();

        Map<String, List<ReverseDependencyLink>> dependencyMap = getDependencyMap();

        // legend
        generateLegend( locale, sink );
View Full Code Here

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

            sink.head_();

            sink.section1();
            sink.sectionTitle1();
            sink.text("Component Reference");
            sink.sectionTitle1_();
            sink.list();

            String currentSubpackage = null;

            for (String className : InternalUtils.sortedKeys(descriptions))
View Full Code Here

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

            sink.head_();

            sink.section1();
            sink.sectionTitle1();
            sink.text("Component Reference");
            sink.sectionTitle1_();
            sink.list();

            String currentSubpackage = null;

            for (String className : InternalUtils.sortedKeys(descriptions))
View Full Code Here

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

            sink.head_();

            sink.section1();
            sink.sectionTitle1();
            sink.text("Component Reference");
            sink.sectionTitle1_();
            sink.list();

            String currentSubpackage = null;

            for (String className : InternalUtils.sortedKeys(descriptions))
View Full Code Here

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

                        sink.body();
                        sink.section1();
                        sink.sectionTitle1();
                        sink.text("Camel Endpoints");
                        sink.sectionTitle1_();

                        if (showIndex) {
                            sink.list();
                        }
                        for (File file : files) {
View Full Code Here

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

            sink.body();
            sink.section1();
            sink.sectionTitle1();
            sink.text("Report");
            sink.sectionTitle1_();

            sink.paragraph();
            addTitleLink(titleEntitiesPerPackage, sink);
            addTitleLink(titleNamesPerEntity, sink);
            addTitleLink(titleJPQLQueries, sink);
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.