Class Extern.Item
- java.lang.Object
-
- gw.gosudoc.com.sun.tools.doclets.internal.toolkit.util.Extern.Item
-
- Enclosing class:
- Extern
private class Extern.Item extends java.lang.ObjectStores the info for one external doc set
-
-
Field Summary
Fields Modifier and Type Field Description (package private) java.lang.StringpackageNamePackage name, found in the "package-list" file in thepath.(package private) java.lang.StringpathThe URL or the directory path at which the package documentation will be available.(package private) booleanrelativeIf given path is directory path then true else if it is a URL then false.
-
Constructor Summary
Constructors Constructor Description Item(java.lang.String packageName, java.lang.String path, boolean relative)Constructor to build a Extern Item object and map it with the package name.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()String representation of "this" with packagename and the path.
-
-
-
Field Detail
-
packageName
final java.lang.String packageName
Package name, found in the "package-list" file in thepath.
-
path
final java.lang.String path
The URL or the directory path at which the package documentation will be available.
-
relative
final boolean relative
If given path is directory path then true else if it is a URL then false.
-
-
Constructor Detail
-
Item
Item(java.lang.String packageName, java.lang.String path, boolean relative)Constructor to build a Extern Item object and map it with the package name. If the same package name is found in the map, then the first mapped Item object or offline location will be retained.- Parameters:
packageName- Package name found in the "package-list" file.path- URL or Directory path from where the "package-list" file is picked.relative- True if path is URL, false if directory path.
-
-