src/share/classes/com/sun/tools/doclets/internal/toolkit/util/DocPaths.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File langtools Sdiff src/share/classes/com/sun/tools/doclets/internal/toolkit/util

src/share/classes/com/sun/tools/doclets/internal/toolkit/util/DocPaths.java

Print this page


   1 /*
   2  * Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


  70     /** Generate the name of one of the files in the split index. */
  71     public static final DocPath indexN(int n) {
  72         return DocPath.create("index-" + n + ".html");
  73     }
  74 
  75     /** The name of the default javascript file. */
  76     public static final DocPath JAVASCRIPT = DocPath.create("script.js");
  77 
  78     /** The name of the file for the overview frame. */
  79     public static final DocPath OVERVIEW_FRAME = DocPath.create("overview-frame.html");
  80 
  81     /** The name of the file for the overview summary. */
  82     public static final DocPath OVERVIEW_SUMMARY = DocPath.create("overview-summary.html");
  83 
  84     /** The name of the file for the overview tree. */
  85     public static final DocPath OVERVIEW_TREE = DocPath.create("overview-tree.html");
  86 
  87     /** The name of the file for the package frame. */
  88     public static final DocPath PACKAGE_FRAME = DocPath.create("package-frame.html");
  89 




















  90     /** The name of the file for the package list. */
  91     public static final DocPath PACKAGE_LIST = DocPath.create("package-list");
  92 
  93     /** The name of the file for the package summary. */
  94     public static final DocPath PACKAGE_SUMMARY = DocPath.create("package-summary.html");
  95 
  96     /** The name of the file for the package tree. */
  97     public static final DocPath PACKAGE_TREE = DocPath.create("package-tree.html");
  98 
  99     /** The name of the file for the package usage info. */
 100     public static final DocPath PACKAGE_USE = DocPath.create("package-use.html");



 101 
 102     /** The name of the directory in which resources are generated.
 103      *  Also the name of the sub-package from which resources are read.
 104      */
 105     public static final DocPath RESOURCES = DocPath.create("resources");
 106 
 107     /** The name of the file for the serialized form info. */
 108     public static final DocPath SERIALIZED_FORM = DocPath.create("serialized-form.html");
 109 
 110     /** The name of the directory in which HTML versions of the source code
 111      *  are generated.
 112      */
 113     public static final DocPath SOURCE_OUTPUT = DocPath.create("src-html");
 114 
 115     /** The name of the default stylesheet. */
 116     public static final DocPath STYLESHEET = DocPath.create("stylesheet.css");
 117 
 118 }
   1 /*
   2  * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


  70     /** Generate the name of one of the files in the split index. */
  71     public static final DocPath indexN(int n) {
  72         return DocPath.create("index-" + n + ".html");
  73     }
  74 
  75     /** The name of the default javascript file. */
  76     public static final DocPath JAVASCRIPT = DocPath.create("script.js");
  77 
  78     /** The name of the file for the overview frame. */
  79     public static final DocPath OVERVIEW_FRAME = DocPath.create("overview-frame.html");
  80 
  81     /** The name of the file for the overview summary. */
  82     public static final DocPath OVERVIEW_SUMMARY = DocPath.create("overview-summary.html");
  83 
  84     /** The name of the file for the overview tree. */
  85     public static final DocPath OVERVIEW_TREE = DocPath.create("overview-tree.html");
  86 
  87     /** The name of the file for the package frame. */
  88     public static final DocPath PACKAGE_FRAME = DocPath.create("package-frame.html");
  89 
  90     /** The name of the file for the profile frame. */
  91      public static final DocPath profileFrame(String profileName) {
  92         return DocPath.create(profileName + "-frame.html");
  93     }
  94 
  95     /** The name of the file for the profile package frame. */
  96      public static final DocPath profilePackageFrame(String profileName) {
  97         return DocPath.create(profileName + "-package-frame.html");
  98     }
  99 
 100     /** The name of the file for the profile package summary. */
 101      public static final DocPath profilePackageSummary(String profileName) {
 102         return DocPath.create(profileName + "-package-summary.html");
 103     }
 104 
 105     /** The name of the file for the profile summary. */
 106      public static final DocPath profileSummary(String profileName) {
 107         return DocPath.create(profileName + "-summary.html");
 108     }
 109 
 110     /** The name of the file for the package list. */
 111     public static final DocPath PACKAGE_LIST = DocPath.create("package-list");
 112 
 113     /** The name of the file for the package summary. */
 114     public static final DocPath PACKAGE_SUMMARY = DocPath.create("package-summary.html");
 115 
 116     /** The name of the file for the package tree. */
 117     public static final DocPath PACKAGE_TREE = DocPath.create("package-tree.html");
 118 
 119     /** The name of the file for the package usage info. */
 120     public static final DocPath PACKAGE_USE = DocPath.create("package-use.html");
 121 
 122     /** The name of the file for the overview frame. */
 123     public static final DocPath PROFILE_OVERVIEW_FRAME = DocPath.create("profile-overview-frame.html");
 124 
 125     /** The name of the directory in which resources are generated.
 126      *  Also the name of the sub-package from which resources are read.
 127      */
 128     public static final DocPath RESOURCES = DocPath.create("resources");
 129 
 130     /** The name of the file for the serialized form info. */
 131     public static final DocPath SERIALIZED_FORM = DocPath.create("serialized-form.html");
 132 
 133     /** The name of the directory in which HTML versions of the source code
 134      *  are generated.
 135      */
 136     public static final DocPath SOURCE_OUTPUT = DocPath.create("src-html");
 137 
 138     /** The name of the default stylesheet. */
 139     public static final DocPath STYLESHEET = DocPath.create("stylesheet.css");
 140 
 141 }
src/share/classes/com/sun/tools/doclets/internal/toolkit/util/DocPaths.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File