Class SourceToHTMLConverter
- java.lang.Object
-
- gw.gosudoc.com.sun.tools.doclets.formats.html.SourceToHTMLConverter
-
@Deprecated public class SourceToHTMLConverter extends Object
Deprecated.Converts Java Source Code to HTML.This is NOT part of any supported API. If you write code that depends on this, you do so at your own risk. This code and its internal interfaces are subject to change or deletion without notice.
- Since:
- 1.4
- Author:
- Jamie Ho, Bhavesh Patel (Modified)
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
convertClass(ClassDoc cd, DocPath outputdir)
Deprecated.Convert the given Class to an HTML.void
convertPackage(PackageDoc pd, DocPath outputdir)
Deprecated.Convert the Classes in the given Package to an HTML.static void
convertRoot(ConfigurationImpl configuration, RootDoc rd, DocPath outputdir)
Deprecated.Convert the Classes in the given RootDoc to an HTML.static String
getAnchorName(Doc d)
Deprecated.Given aDoc
, return an anchor name for it.HtmlTree
getStyleSheetProperties()
Deprecated.Returns a link to the stylesheet file.
-
-
-
Method Detail
-
convertRoot
public static void convertRoot(ConfigurationImpl configuration, RootDoc rd, DocPath outputdir)
Deprecated.Convert the Classes in the given RootDoc to an HTML.- Parameters:
configuration
- the configuration.rd
- the RootDoc to convert.outputdir
- the name of the directory to output to.
-
convertPackage
public void convertPackage(PackageDoc pd, DocPath outputdir)
Deprecated.Convert the Classes in the given Package to an HTML.- Parameters:
pd
- the Package to convert.outputdir
- the name of the directory to output to.
-
convertClass
public void convertClass(ClassDoc cd, DocPath outputdir)
Deprecated.Convert the given Class to an HTML.- Parameters:
cd
- the class to convert.outputdir
- the name of the directory to output to.
-
getStyleSheetProperties
public HtmlTree getStyleSheetProperties()
Deprecated.Returns a link to the stylesheet file.- Returns:
- an HtmlTree for the lINK tag which provides the stylesheet location
-
-