Examples of section2_()


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

                if (!subpackage.equals(currentSubpackage))
                {
                    if (currentSubpackage != null)
                    {
                        sink.list_();
                        sink.section2_();
                    }

                    sink.section2();
                    sink.sectionTitle2();
                    sink.text(StringUtils.capitalize(subpackage));
View Full Code Here

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

            }

            if (currentSubpackage != null)
            {
                sink.list_();
                sink.section2_();
            }
        }
        catch (Exception ex)
        {
            throw new MavenReportException(ex.getMessage(), ex);
View Full Code Here

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

                            } else {
                                sink.section1_();

                                sink.section2();
                                sink.rawText(endpointHtml);
                                sink.section2_();
                            }
                        }
                        if (showIndex) {
                            sink.list_();
                            sink.section1_();
View Full Code Here

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

                            sink.list_();
                            sink.section1_();

                            sink.section2();
                            sink.rawText(buffer.toString());
                            sink.section2_();
                        }
                        sink.body_();
                        sink.flush();
                        sink.close();
                    }
View Full Code Here

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

                sink.tableCell_();
                sink.tableRow_();
            }

            sink.table_();
            sink.section2_();

            sink.section2();
            sink.sectionTitle2();
            sink.text("List of NamedQueries per entity");
            sink.sectionTitle2_();
View Full Code Here

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

                sink.tableCell_();
                sink.tableRow_();
            }

            sink.table_();
            sink.section2_();

            sink.section2();
            sink.sectionTitle2();
            sink.text("List of JPQL queries");
            sink.sectionTitle2_();
View Full Code Here

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

                sink.tableCell_();
                sink.tableRow_();
            }

            sink.table_();
            sink.section2_();

            sink.section2();
            sink.sectionTitle2();
            sink.text("List of SQL Queries");
            sink.sectionTitle2_();
View Full Code Here

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

                    sink.tableRow_();
                }
            }

            sink.table_();
            sink.section2_();

            sink.section2();
            sink.sectionTitle2();
            sink.text("List of Faulty Queries");
            sink.sectionTitle2_();
View Full Code Here

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

                    sink.tableRow_();
                }
            }

            sink.table_();
            sink.section2_();

            sink.section1_();

            sink.body_();
            sink.flush();
View Full Code Here

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

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

        sink.sectionTitle2_();

        sink.section2_();

        // detail tests table header
        sink.table();

        sink.tableRow();
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.