Methods Summary |
---|
protected void | generateIndex()Generate the frame or non-frame package index.
printIndexContents(packages, "doclet.Package_Summary");
|
protected void | generatePackageIndexFile()Generate the contants in the package index file. Call appropriate
methods from the sub-class in order to generate Frame or Non
Frame format.
printHeader(getText("doclet.Window_Overview",
Standard.configuration().windowtitle));
printNavigationBarHeader();
printOverviewHeader();
generateIndex();
printOverview();
printNavigationBarFooter();
printBodyHtmlEnd();
|
protected void | navLinkContents()Highlight "Overview" in the bold format, in the navigation bar as this
is the overview page.
navCellRevStart();
fontStyle("NavBarFont1Rev");
boldText("doclet.Overview");
fontEnd();
navCellEnd();
|
protected void | printAllClassesPackagesLink()Do nothing. This will be overridden in PackageIndexFrameWriter.
|
protected void | printConfigurationTitle()Print the doctitle, if it is specified on the command line.
if (Standard.configuration().doctitle.length() > 0) {
center();
h2();
print(Standard.configuration().doctitle);
h2End();
centerEnd();
}
|
protected void | printIndexContents(com.sun.javadoc.PackageDoc[] packages, java.lang.String text)Generate code for package index contents. Call appropriate methods from
the sub-classes.
if (packages.length > 0) {
Arrays.sort(packages);
printIndexHeader(text);
printAllClassesPackagesLink();
for(int i = 0; i < packages.length; i++) {
PackageDoc packagedoc = packages[i];
printIndexRow(packagedoc);
}
printIndexFooter();
}
|
protected abstract void | printIndexFooter()
|
protected abstract void | printIndexHeader(java.lang.String text)
|
protected abstract void | printIndexRow(com.sun.javadoc.PackageDoc pkg)
|
protected abstract void | printNavigationBarFooter()
|
protected abstract void | printNavigationBarHeader()
|
protected void | printOverview()Default to no overview, overwrite to add overview.
|
protected abstract void | printOverviewHeader()
|