/[classpath]/gjdoc/src/gnu/classpath/tools/doclets/htmldoclet/HtmlPage.java
ViewVC logotype

Diff of /gjdoc/src/gnu/classpath/tools/doclets/htmldoclet/HtmlPage.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.12 by julian, Fri Feb 4 17:41:16 2005 UTC revision 1.13 by julian, Sat Feb 5 07:47:29 2005 UTC
# Line 46  import com.sun.javadoc.Tag; Line 46  import com.sun.javadoc.Tag;
46   */   */
47  public class HtmlPage  public class HtmlPage
48  {  {
49       private File file;
50     private PrintWriter out;     private PrintWriter out;
51     private String pathToRoot;     private String pathToRoot;
52     private String docType;     private String docType;
# Line 62  public class HtmlPage Line 63  public class HtmlPage
63     public HtmlPage(File file, String pathToRoot, String encoding, String docType)     public HtmlPage(File file, String pathToRoot, String encoding, String docType)
64        throws IOException        throws IOException
65     {     {
66          this.file = file;
67        OutputStream fileOut = new FileOutputStream(file);        OutputStream fileOut = new FileOutputStream(file);
68        Writer writer;        Writer writer;
69        if (null != encoding) {        if (null != encoding) {
# Line 484  public class HtmlPage Line 486  public class HtmlPage
486        result.append("</a>");        result.append("</a>");
487        return result.toString();        return result.toString();
488     }     }
489    
490       public File getFile()
491       {
492          return this.file;
493       }
494  }  }

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26