Methods Summary |
---|
public static void | generate()Generate the package index file named "overview-frame.html".
PackageIndexFrameWriter packgen;
String filename = "overview-frame.html";
try {
packgen = new PackageIndexFrameWriter(filename);
packgen.generatePackageIndexFile();
packgen.close();
} catch (IOException exc) {
Standard.configuration().standardmessage.error("doclet.exception_encountered",
exc.toString(), filename);
throw new DocletAbortException();
}
|
protected void | printAllClassesPackagesLink()Print "All Classes" link at the top of the left-hand frame page.
fontStyle("FrameItemFont");
printTargetHyperLink("allclasses-frame.html", "packageFrame",
getText("doclet.All_Classes"));
fontEnd();
p();
fontSizeStyle("+1", "FrameHeadingFont");
printText("doclet.Packages");
fontEnd();
br();
|
protected void | printIndexFooter()Print Html closing "table" tag at the end of the package index.
printTableFooter();
|
protected void | printIndexHeader(java.lang.String text)Print Html "table" tag for the package index format.
printTableHeader();
|
protected void | printIndexRow(com.sun.javadoc.PackageDoc pd)Print each package name on separate rows.
fontStyle("FrameItemFont");
printTargetHyperLink(pathString(pd, "package-frame.html"),
"packageFrame", pd.name());
fontEnd();
br();
|
protected void | printNavigationBarFooter()Just print some space, since there is no navigation bar for this page.
p();
space();
|
protected void | printNavigationBarHeader()Print the "-header" in bold format, at top of the page. There is
actually no navigation bar for this page.
if (Standard.configuration().header != null) {
printTableHeader();
fontSizeStyle("+1", "FrameTitleFont");
bold(Standard.configuration().header);
fontEnd();
printTableFooter();
}
|
protected void | printOverviewHeader()Do nothing as there is no overview information in this page.
|
protected void | printTableFooter()Print Html closing tags for the table for package index.
tdEnd();
trEnd();
tableEnd();
|
protected void | printTableHeader()Print Html tags for the table for package index.
table();
tr();
tdNowrap();
|