Package Torello.JavaDoc
Class PackageSummaryHTML
- java.lang.Object
-
- Torello.JavaDoc.PackageSummaryHTML
-
- All Implemented Interfaces:
java.io.Serializable
public class PackageSummaryHTML extends java.lang.Object implements java.io.Serializable
A class that parses and encapsulates the contents of a'package-summary.html'
File.- See Also:
- Serialized Form
Hi-Lited Source-Code:- View Here: Torello/JavaDoc/PackageSummaryHTML.java
- Open New Browser-Tab: Torello/JavaDoc/PackageSummaryHTML.java
File Size: 29,667 Bytes Line Count: 721 '\n' Characters Found
-
-
Field Summary
Serializable ID Modifier and Type Field protected static long
serialVersionUID
Package-Name as a String Modifier and Type Field String
packageName
Static Constant Field Modifier and Type Field static String
JD_FRAMES_WARNING_MESSAGE
-
Method Summary
Exported, Parsed, HTML Vectors Modifier and Type Method Vector<HTMLNode>
bottomNavBar()
Vector<HTMLNode>
description()
Vector<HTMLNode>
head()
Vector<HTMLNode>
topNavBar()
Static Method Modifier and Type Method static void
defaultCleaner(Vector<HTMLNode> cietSummary)
-
-
-
Field Detail
-
serialVersionUID
protected static final long serialVersionUID
This fulfils the SerialVersion UID requirement for all classes that implement Java'sinterface java.io.Serializable
. Using theSerializable
Implementation offered by java is very easy, and can make saving program state when debugging a lot easier. It can also be used in place of more complicated systems like "hibernate" to store data as well.- See Also:
- Constant Field Values
- Code:
- Exact Field Declaration Expression:
protected static final long serialVersionUID = 1;
-
JD_FRAMES_WARNING_MESSAGE
public static final java.lang.String JD_FRAMES_WARNING_MESSAGE
Deprecated, but useful API Error-Message- See Also:
- Constant Field Values
- Code:
- Exact Field Declaration Expression:
public static final String JD_FRAMES_WARNING_MESSAGE = "javadoc: warning - You have specified to generate frames, by using the --frames " + "option.\n" + "The default is currently to not generate frames and the support for \n" + "frames will be removed in a future release.\n" + "To suppress this warning, remove the --frames option and avoid the use of frames.\n";
-
packageName
public final java.lang.String packageName
The name of the Java Package represented by this instance.
-
-
Method Detail
-
head
-
topNavBar
public java.util.Vector<HTMLNode> topNavBar()
Allows a User to both retrieve and to modify the contents of the'package-summary.html'
Nav-Bar.- Returns:
- Vectorized-HTML of this Web-Page's Upper Navigation Menu-Bar.
- Code:
- Exact Method Body:
return (this.topNavBar == null) ? null : this.topNavBar.html;
-
bottomNavBar
public java.util.Vector<HTMLNode> bottomNavBar()
Allows a User to both retrieve and to modify the contents of the'package-summary.html'
Nav-Bar.- Returns:
- Vectorized-HTML of this Web-Page's Lower Navigation Menu-Bar.
- Code:
- Exact Method Body:
return (this.bottomNavBar == null) ? null : this.bottomNavBar.html;
-
description
public java.util.Vector<HTMLNode> description()
Allows a User to both retrieve and to modify the contents of the'package-summary.html'
Description Text-Area.- Returns:
- Vectorized-HTML of this Web-Page's Main Description Box.
- Code:
- Exact Method Body:
return this.description.html;
-
defaultCleaner
public static final void defaultCleaner (java.util.Vector<HTMLNode> cietSummary)
-
-