Examples of sectionTitle1_()


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

        sink.body();

        sink.section1();
        sink.sectionTitle1();
        sink.text( title );
        sink.sectionTitle1_();

        sink.paragraph();
        sink.text( desc1 + " " );
        sink.link( "http://maven.apache.org" );
        sink.text( "Maven" );
View Full Code Here

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

        sink.body();

        sink.section1();
        sink.sectionTitle1();
        sink.text( title );
        sink.sectionTitle1_();

        sink.paragraph();
        sink.text( desc1 + " " );
        sink.link( "http://maven.apache.org" );
        sink.text( "Maven" );
View Full Code Here

Examples of org.codehaus.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.codehaus.doxia.sink.Sink.sectionTitle1_()

        Sink sink = getSink();

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

        for (String className : InternalUtils.sortedKeys(descriptions))
        {
            String simpleName = InternalUtils.lastTerm(className);
View Full Code Here

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

        Sink sink = getSink();

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

        for (String className : InternalUtils.sortedKeys(descriptions))
        {
            String simpleName = InternalUtils.lastTerm(className);
View Full Code Here

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

      sink.head_();
      sink.body();
      sink.section1();
      sink.sectionTitle1();
      sink.text("Pladoc Documentation");
      sink.sectionTitle1_();
      sink.lineBreak();
      sink.lineBreak();
      sink.text("The Pladoc documentation comprises: ");
      sink.lineBreak();
      for (String fileName : targetDir.list()) {
View Full Code Here

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

      for (JavaClass clazz : classes) {
        if (hasPathAnnotation(clazz)) {
          sink.section1();
          sink.sectionTitle1();
          sink.text("Class: " + clazz.getName());
          sink.sectionTitle1_();
          sink.lineBreak();
          sink.text("Package: " + clazz.getPackage().getName());
          sink.lineBreak();
          sink.lineBreak();
          for (Annotation annotation : clazz.getAnnotations()) {
View Full Code Here

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

        Sink sink = getSink();

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

        for (String className : InternalUtils.sortedKeys(descriptions))
        {
            String simpleName = InternalUtils.lastTerm(className);
View Full Code Here

Examples of org.codehaus.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.codehaus.doxia.sink.Sink.sectionTitle1_()

        sink.anchor_();
       
        sink.section1();
        sink.sectionTitle1();
        sink.text(getName(locale));
        sink.sectionTitle1_();
        sink.paragraph();
        sink.text(this.getBundle(locale).getString("meta.description"));
        sink.lineBreak();
        sink.text(this.getProject().getName() + " Version: " + this.getProject().getVersion());
        sink.paragraph_();
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.