179180181182183184185186187188189
Sink sink = getSink(); sink.head(); sink.title(); sink.text("Component Reference"); sink.title_(); sink.head_(); sink.section1(); sink.sectionTitle1();
185186187188189190191192193194195
sink.title_(); sink.head_(); sink.section1(); sink.sectionTitle1(); sink.text("Component Reference"); sink.sectionTitle1_(); sink.list(); String currentSubpackage = null;
207208209210211212213214215216217
sink.section2_(); } sink.section2(); sink.sectionTitle2(); sink.text(StringUtils.capitalize(subpackage)); sink.sectionTitle2_(); sink.list();
221222223224225226227228229230231
sink.listItem(); sink.link(toPath(className) + ".html"); sink.text(className); sink.link_(); writeClassDescription(descriptions, refDir, docSearchPath, className);
147148149150151152153154155156157
Sink sink = getSink(); sink.section1(); sink.sectionTitle1(); sink.text("Component Index"); sink.sectionTitle1_(); sink.list(); for (String className : InternalUtils.sortedKeys(descriptions)) {
161162163164165166167168169170171
// Something is converting the name attribute of the anchors to lower case, so // we'll follow suit. sink.link("#" + fixup(className)); sink.text(simpleName); sink.link_(); sink.listItem_(); }
135136137138139140141142143144145
149150151152153154155156157158159
// Something is convertin the name attribute of the anchors to lower case, so // we'll follow suit. sink.link("#" + className.toLowerCase()); sink.text(simpleName); sink.link_(); sink.listItem_(); }
183184185186187188189190191192193
} Sink sink = getSink(); sink.head(); sink.title(); sink.text("Pladoc Documentation"); sink.title_(); sink.head_(); sink.body(); sink.section1(); sink.sectionTitle1();
189190191192193194195196197198199
sink.title_(); 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();