Package Torello.JavaDoc
Class JDFiles
- java.lang.Object
-
- Torello.JavaDoc.JDFiles
-
public class JDFiles extends java.lang.Object
Retrieve Java Doc HTML Files from the Java Doc output directory.
This class builds lists of the File-Names generated by the Standard JDK JavaDoc Tool.
Optional Use:
It is absolutely not mandatory to use these methods to retrieve the names of Java Documentation Files in order to perform an upgrade.
This class is left as a part of the Public-API due to its ease-of-use, and due to the fact that it could, conveivably, be useful to some programmers down the line, who have unforseen programming requirements.
Hi-Lited Source-Code:- View Here: Torello/JavaDoc/JDFiles.java
- Open New Browser-Tab: Torello/JavaDoc/JDFiles.java
File Size: 12,612 Bytes Line Count: 322 '\n' Characters Found
Stateless Class:This class neither contains any program-state, nor can it be instantiated. The@StaticFunctional
Annotation may also be called 'The Spaghetti Report'.Static-Functional
classes are, essentially, C-Styled Files, without any constructors or non-static member fields. It is a concept very similar to the Java-Bean's@Stateless
Annotation.
- 1 Constructor(s), 1 declared private, zero-argument constructor
- 11 Method(s), 11 declared static
- 2 Field(s), 2 declared static, 2 declared final
-
-
Field Summary
Fields Modifier and Type Field static FileFilter
DIRS_TO_SKIP
static FilenameFilter
HTML_FILE_FILTER
-
Method Summary
Retrieve all User-Provided <EMBED> Tag-Map Files Modifier and Type Method static Stream<String>
allLocalEmbedTagMapFiles(String rootSrcCodeDirName)
Retrieve every '.html' File in the JavaDoc Directory Tree Modifier and Type Method static Stream<String>
getAllHTMLFiles(String rootJDOutDirName)
Retrieve '.html' Files from only the Root JavaDoc Directory Modifier and Type Method static Stream<String>
getHTMLFilesInRoot(String rootJDOutDirName)
Retrieve all CIET/Type '.html' Files in the JavaDoc Directory Tree Modifier and Type Method static Stream<String>
getJavaClassHTMLFiles(String rootJDOutDirName)
Retrieve all CIET/Type '.html' Files, but organize them by Package Modifier and Type Method static ReadOnlyMap<String,
ReadOnlyList<String>>getJavaClassHTMLFilesByPackage(String rootJDOutDirName)
Retrieve all 'package-*.html'
FilesModifier and Type Method static Stream<String>
getJavaPackageHTMLFiles(String rootJDOutDirName)
Retrieve all 'package-frame.html'
and'package-summary.html'
FilesModifier and Type Method static Stream<String>
getFrameSummaryHTMLFiles(String rootJDOutDirName)
Retrieve all 'package-frame.html'
FilesModifier and Type Method static Stream<String>
getPackageFrameHTMLFiles(String rootJDOutDirName)
Retrieve all 'package-summary.html'
FilesModifier and Type Method static Stream<String>
getPackageSummaryHTMLFiles(String rootJDOutDirName)
Retrieve all 'package-tree.html'
FilesModifier and Type Method static Stream<String>
getPackageTreeHTMLFiles(String rootJDOutDirName)
Retrieve all linked 'src-html/'
CIET/Type '.html' FilesModifier and Type Method static Stream<String>
getSrcAsHTMLFiles(String rootJDOutDirName)
-
-
-
Field Detail
-
HTML_FILE_FILTER
public static final java.io.FilenameFilter HTML_FILE_FILTER
A JavaPredicate
that filters for'.html'
files.
-
DIRS_TO_SKIP
public static final java.io.FileFilter DIRS_TO_SKIP
A JavaPredicate
that avoids directories that contain extranneous files.
-
-
Method Detail
-
getJavaClassHTMLFiles
public static java.util.stream.Stream<java.lang.String> getJavaClassHTMLFiles (java.lang.String rootJDOutDirName)
This method reads in the HTML files that JavaDoc generates for it's code documentation system, and returns the ones that are mapped to'.java'
Class-Files / Type-Files.
Parameter Requirement:
This method accepts a directory name from the local File-System. This parameter's value must be the name of the directory to which the last call to javadoc left it's output HTML files- Parameters:
rootJDOutDirName
- This should be the directory-name (as aString
) of the last javadoc output directory. (Usually this is'javadoc/'
)- Returns:
- This will return the list of files as a Java
Stream<String>
. - See Also:
HTML_FILE_FILTER
,DIRS_TO_SKIP
,FileNode
,FileNode.flattenJustFiles(RTC)
,RTC.FULLPATH_STREAM()
- Code:
- Exact Method Body:
return FileNode .createRoot(rootJDOutDirName) .loadTree(-1, HTML_FILE_FILTER, DIRS_TO_SKIP) .prune( (FileNode fn) -> StrCmpr.equalsNAND (fn.name, "package-summary.html", "package-tree.html", "package-frame.html"), true ) // This 'prune' eliminates HTML files in the *ROOT* Java-Doc directory .prune( (FileNode fn) -> ! rootJDOutDirName.equals(fn.getParentPathName()), true ) .flattenJustFiles(RTC.FULLPATH_STREAM());
-
getJavaClassHTMLFilesByPackage
public static ReadOnlyMap<java.lang.String,ReadOnlyList<java.lang.String>> getJavaClassHTMLFilesByPackage (java.lang.String rootJDOutDirName)
This method returns the exact same files asgetJavaClassHTMLFiles(String)
, but each file returned has been sorted into a specific 'bucket' based on which Java Package the CIET (class, inteface, enumerated-type, record etc...) HTML file belongs.- Parameters:
rootJDOutDirName
- This should be the directory-name (as aString
) of the last javadoc output directory. (Usually this is'javadoc/'
)- Returns:
- This will return the list of files, sorted by 'Package Name' - where the package
is merely determined by the directory-name where the file was found.
Element Contents ReadOnlyMap
'key'The directory-name of the Java-Doc HTML-Directory containing the CIET Java Doc HTML Files for a specific package. (NOTE: This is different than the actual 'Package Name') ReadOnlyMap
'value'A ReadOnlyList
of file-name's (each as aString
) of each Java Doc generated HTML file for a CIET in the specific package. - See Also:
HTML_FILE_FILTER
,DIRS_TO_SKIP
,FileNode
,FileNode.getParentPathName()
,FileNode.flattenJustDirs()
- Code:
- Exact Method Body:
// TreeMap<String, Vector<String>> ret = new TreeMap<>(); ROTreeMapBuilder<String, ReadOnlyList<String>> b = new ROTreeMapBuilder<>(); // These are files usually found in a Package-Directory. These cannot be processed by // the class "MainFilesProcessor". These files are not for CIET/Types (specific class // JD Files), but rather if/when these files need to be modified they are handled by the // "ExtraFilesProcessor" FileNodeFilter TYPE_HTML_FILES = (FileNode fn) -> StrCmpr.equalsNAND (fn.name, "package-summary.html", "package-tree.html", "package-frame.html"); FileNode .createRoot(rootJDOutDirName) .loadTree(-1, HTML_FILE_FILTER, DIRS_TO_SKIP) .flattenJustDirs() .forEach((FileNode packageDirFN) -> { // The Full-Path Directory name of a single Java Package String packageDir = packageDirFN.getFullPathName(); // The root 'javadoc/' directory doesn't have any of the Java class files if (packageDir.equals(rootJDOutDirName)) return; // Retrieve all CIET/Type Web-Pages for a single package-directory ReadOnlyList<String> cietFileNames = packageDirFN.getDirContentsFiles (RTC.SORTED_FILENAME_ROAL(), TYPE_HTML_FILES); // Sometimes a Java-Package doesn't have any files in it. Skip those dirs. if (cietFileNames.size() > 0) b.put(packageDir, cietFileNames); }); return b.build();
-
allLocalEmbedTagMapFiles
@Deprecated ublic static java.util.stream.Stream<java.lang.String> allLocalEmbedTagMapFiles (java.lang.String rootSrcCodeDirName)
Deprecated.Retrieves all User-Provided HTML Embed-Tag Map Files in his source-directory tree.- Parameters:
rootSrcCodeDirName
- The root source-directory- Returns:
- All Externa-HTML
<EMBED>
Tag-to-FileName map files. - See Also:
FileNode
,FileNode.flattenJustFiles(RTC)
,RTC.FULLPATH_STREAM()
- Code:
- Exact Method Body:
return FileNode .createRoot(rootSrcCodeDirName) .loadTree( -1, (File dir, String fName) -> fName.equals("external-html-ids.properties"), null ) .flattenJustFiles(RTC.FULLPATH_STREAM());
-
getSrcAsHTMLFiles
public static java.util.stream.Stream<java.lang.String> getSrcAsHTMLFiles (java.lang.String rootJDOutDirName)
This method reads in the HTML files which contain only the "Java Source Code" itself. The files that are returned in thisStream<String>
are not "Code Documentation Web-Pages," but rather they are the "Java Source Code" itself, after some minor 'conversion' to turn them into HTML Web-Browser viewable files.'/src-html/'
Directory:
JavaDoc, by default, will not generate the "HTML-ized" source-code files. The creation of these files has to be specifically requested at the command-line using the switch-linksource
.
If this method is returning an emptyStream
, make sure that the last invocation of the Javadoc Tool specified this switch, or there will not be a/jd-root-dir/src-file/
directory in the first place.
Parameter Requirement:
This method accepts a directory name from the local File-System. This parameter's value must be the name of the directory to which the last call to javadoc left it's output HTML files- Parameters:
rootJDOutDirName
- This should be the directory-name (as aString
) of the last javadoc output directory. (Usually this is'javadoc/'
)- Returns:
- This will return the list of files as a Java
Stream<String>
. - See Also:
HTML_FILE_FILTER
,FileNode.flattenJustFiles(RTC)
,RTC.FULLPATH_STREAM()
- Code:
- Exact Method Body:
if (! (new File(rootJDOutDirName + "src-html" + File.separator)).exists()) return Stream.empty(); return FileNode .createRoot(rootJDOutDirName + "src-html" + File.separator) .loadTree(-1, HTML_FILE_FILTER, null) .flattenJustFiles(RTC.FULLPATH_STREAM());
-
getJavaPackageHTMLFiles
public static java.util.stream.Stream<java.lang.String> getJavaPackageHTMLFiles (java.lang.String rootJDOutDirName)
This method reads in the HTML files that JavaDoc generates for it's code documentation system, and returns all of the'package-summary', 'package-tree', and 'package-frame'
.
Parameter Requirement:
This method accepts a directory name from the local File-System. This parameter's value must be the name of the directory to which the last call to javadoc left it's output HTML files- Parameters:
rootJDOutDirName
- This should be the directory-name (as aString
) of the last javadoc output directory. (Usually this is'javadoc/'
)- Returns:
- This will return the list of files as a Java
Stream<String>
. - See Also:
HTML_FILE_FILTER
,DIRS_TO_SKIP
,FileNode.flattenJustFiles(RTC)
,RTC.FULLPATH_STREAM()
- Code:
- Exact Method Body:
return FileNode .createRoot(rootJDOutDirName) .loadTree(-1, HTML_FILE_FILTER, DIRS_TO_SKIP) .flattenJustFiles(RTC.FULLPATH_STREAM()) .filter((String fileName) -> fileName.endsWith("package-summary.html") || fileName.endsWith("package-tree.html") || fileName.endsWith("package-frame.html") );
-
getFrameSummaryHTMLFiles
public static java.util.stream.Stream<java.lang.String> getFrameSummaryHTMLFiles (java.lang.String rootJDOutDirName)
This method retrieves allpackage-frame.html
andpackage-summary.html
files.
Parameter Requirement:
This method accepts a directory name from the local File-System. This parameter's value must be the name of the directory to which the last call to javadoc left it's output HTML files- Parameters:
rootJDOutDirName
- This should be the directory-name (as aString
) of the last javadoc output directory. (Usually this is'javadoc/'
)- Returns:
- This will return the list of files as a Java
Stream<String>
. - See Also:
HTML_FILE_FILTER
,DIRS_TO_SKIP
,FileNode.flattenJustFiles(RTC)
,RTC.FULLPATH_STREAM()
- Code:
- Exact Method Body:
return FileNode .createRoot(rootJDOutDirName) .loadTree(-1, HTML_FILE_FILTER, DIRS_TO_SKIP) .flattenJustFiles(RTC.FULLPATH_STREAM()) .filter((String fileName) -> fileName.endsWith("package-summary.html") || fileName.endsWith("package-frame.html") );
-
getAllHTMLFiles
public static java.util.stream.Stream<java.lang.String> getAllHTMLFiles (java.lang.String rootJDOutDirName)
This method reads in the HTML files that JavaDoc generates for it's code documentation system, and returns all of them
Parameter Requirement:
This method accepts a directory name from the local File-System. This parameter's value must be the name of the directory to which the last call to javadoc left it's output HTML files- Parameters:
rootJDOutDirName
- This should be the directory-name (as aString
) of the last javadoc output directory. (Usually this is'javadoc/'
)- Returns:
- This will return the list of files as a Java
Stream<String>
. - See Also:
HTML_FILE_FILTER
,FileNode.flattenJustFiles(RTC)
,RTC.FULLPATH_STREAM()
- Code:
- Exact Method Body:
return FileNode .createRoot(rootJDOutDirName) // The 'doc-files/' are user-generated, skip those... .loadTree(-1, HTML_FILE_FILTER, (File dir) -> (! dir.getName().equals("doc-files")) && (! dir.getName().equals("hilite-files")) ) .flattenJustFiles(RTC.FULLPATH_STREAM());
-
getPackageSummaryHTMLFiles
public static java.util.stream.Stream<java.lang.String> getPackageSummaryHTMLFiles (java.lang.String rootJDOutDirName)
This method reads in the HTML files that JavaDoc generates for it's code documentation system, and returns all files names "package-summary.html"'package-summary.html'
:
A Package-Summary Web-Page is the page that describes, briefly, the general goal of a Package in a Java JAR-File, or Java Tools Suite. It lists all classes present in the Package, and attempts to provide the first line of commenting for each class in an HTML Table with links to that class.
Parameter Requirement:
This method accepts a directory name from the local File-System. This parameter's value must be the name of the directory to which the last call to javadoc left it's output HTML files- Parameters:
rootJDOutDirName
- This should be the directory-name (as aString
) of the last javadoc output directory. (Usually this is'javadoc/'
)- Returns:
- This will return the list of files as a Java
Stream<String>
. - Code:
- Exact Method Body:
return FileNode .createRoot(rootJDOutDirName) .loadTree(-1, HTML_FILE_FILTER, DIRS_TO_SKIP) .flattenJustFiles(RTC.FULLPATH_STREAM()) .filter((String fileName) -> fileName.endsWith("package-summary.html"));
-
getPackageFrameHTMLFiles
public static java.util.stream.Stream<java.lang.String> getPackageFrameHTMLFiles (java.lang.String rootJDOutDirName)
This method reads in the HTML files that JavaDoc generates for it's code documentation system, and returns all files names "package-frame.html"'package-frame.html'
:
A Package-Frame Web-Page is the page that lists all classes present in the Package, and simply provides Anchor-URL
links to each of that Package's Classes.
Parameter Requirement:
This method accepts a directory name from the local File-System. This parameter's value must be the name of the directory to which the last call to javadoc left it's output HTML files- Parameters:
rootJDOutDirName
- This should be the directory-name (as aString
) of the last javadoc output directory. (Usually this is'javadoc/'
)- Returns:
- This will return the list of files as a Java
Stream<String>
. - Code:
- Exact Method Body:
return FileNode .createRoot(rootJDOutDirName) .loadTree(-1, HTML_FILE_FILTER, DIRS_TO_SKIP) .flattenJustFiles(RTC.FULLPATH_STREAM()) .filter((String fileName) -> fileName.endsWith("package-frame.html"));
-
getHTMLFilesInRoot
public static java.util.stream.Stream<java.lang.String> getHTMLFilesInRoot (java.lang.String rootJDOutDirName)
This method reads in the HTML files in the Base JavaDoc Output Directory. This is usually something simple like'javadoc/'
Parameter Requirement:
This method accepts a directory name from the local File-System. This parameter's value must be the name of the directory to which the last call to javadoc left it's output HTML files- Parameters:
rootJDOutDirName
- This should be the directory-name (as aString
) of the last javadoc output directory. (Usually this is'javadoc/'
)- Returns:
- This will return the list of files as a Java
Stream<String>
. - See Also:
HTML_FILE_FILTER
,FileNode.flattenJustFiles(RTC)
,RTC.FULLPATH_STREAM()
- Code:
- Exact Method Body:
return FileNode .createRoot(rootJDOutDirName) .loadTree(0, HTML_FILE_FILTER, null) .flattenJustFiles(RTC.FULLPATH_STREAM());
-
getPackageTreeHTMLFiles
public static java.util.stream.Stream<java.lang.String> getPackageTreeHTMLFiles (java.lang.String rootJDOutDirName)
This method reads in the HTML files that JavaDoc generates for it's code documentation system, and returns all files names "package-tree.html"'package-tree.html'
:
A Package-Tree Web-Page is the page that lists all classes present in the Package, and builds an Object Hierarchy of those classes. Links are included to each class in this Object-Oriented Inheritance Hierarchy Tree.
Parameter Requirement:
This method accepts a directory name from the local File-System. This parameter's value must be the name of the directory to which the last call to javadoc left it's output HTML files- Parameters:
rootJDOutDirName
- This should be the directory-name (as aString
) of the last javadoc output directory. (Usually this is'javadoc/'
)- Returns:
- This will return the list of files as a Java
Stream<String>
. - See Also:
getJavaPackageHTMLFiles(String)
- Code:
- Exact Method Body:
return JDFiles .getJavaPackageHTMLFiles(rootJDOutDirName) .filter((String fileName) -> fileName.contains("package-tree.html"));
-
-