src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/DocPaths.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 1998, 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1998, 2016, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Oracle designates this

@@ -21,11 +21,11 @@
  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  * or visit www.oracle.com if you need additional information or have any
  * questions.
  */
 
-package com.sun.tools.doclets.internal.toolkit.util;
+package jdk.javadoc.internal.doclets.toolkit.util;
 
 /**
  * Standard DocPath objects.
  *
  *  <p><b>This is NOT part of any supported API.

@@ -142,36 +142,16 @@
     public static final DocPath PACKAGE_TREE = DocPath.create("package-tree.html");
 
     /** The name of the file for the package usage info. */
     public static final DocPath PACKAGE_USE = DocPath.create("package-use.html");
 
-    /** The name of the file for the overview frame. */
-    public static final DocPath PROFILE_OVERVIEW_FRAME = DocPath.create("profile-overview-frame.html");
-
-    /** The name of the file for the profile frame. */
-     public static DocPath profileFrame(String profileName) {
-        return DocPath.create(profileName + "-frame.html");
-    }
-
-    /** The name of the file for the profile package frame. */
-     public static DocPath profilePackageFrame(String profileName) {
-        return DocPath.create(profileName + "-package-frame.html");
-    }
-
-    /** The name of the file for the profile package summary. */
-     public static DocPath profilePackageSummary(String profileName) {
-        return DocPath.create(profileName + "-package-summary.html");
-    }
-
-    /** The name of the file for the profile summary. */
-     public static DocPath profileSummary(String profileName) {
-        return DocPath.create(profileName + "-summary.html");
-    }
-
     /** The name of the sub-package from which resources are read. */
     public static final DocPath RESOURCES = DocPath.create("resources");
 
+    public static final DocPath RESOURCES_IN_FORMATS_HTML = DocPath
+            .create("/jdk/javadoc/internal/doclets/formats/html/resources");
+
     /** The name of the search javascript file. */
     public static final DocPath SEARCH_JS = DocPath.create("search.js");
 
     /** The name of the file for the serialized form info. */
     public static final DocPath SERIALIZED_FORM = DocPath.create("serialized-form.html");