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

changeset 1568
5f0731e4e5e6
parent 1417
522a1ee72340
child 2225
b8ebde062692
     1.1 --- a/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/DocPaths.java	Wed Jan 16 12:00:21 2013 -0800
     1.2 +++ b/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/DocPaths.java	Mon Jan 21 00:45:35 2013 -0500
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -87,6 +87,26 @@
    1.11      /** The name of the file for the package frame. */
    1.12      public static final DocPath PACKAGE_FRAME = DocPath.create("package-frame.html");
    1.13  
    1.14 +    /** The name of the file for the profile frame. */
    1.15 +     public static final DocPath profileFrame(String profileName) {
    1.16 +        return DocPath.create(profileName + "-frame.html");
    1.17 +    }
    1.18 +
    1.19 +    /** The name of the file for the profile package frame. */
    1.20 +     public static final DocPath profilePackageFrame(String profileName) {
    1.21 +        return DocPath.create(profileName + "-package-frame.html");
    1.22 +    }
    1.23 +
    1.24 +    /** The name of the file for the profile package summary. */
    1.25 +     public static final DocPath profilePackageSummary(String profileName) {
    1.26 +        return DocPath.create(profileName + "-package-summary.html");
    1.27 +    }
    1.28 +
    1.29 +    /** The name of the file for the profile summary. */
    1.30 +     public static final DocPath profileSummary(String profileName) {
    1.31 +        return DocPath.create(profileName + "-summary.html");
    1.32 +    }
    1.33 +
    1.34      /** The name of the file for the package list. */
    1.35      public static final DocPath PACKAGE_LIST = DocPath.create("package-list");
    1.36  
    1.37 @@ -99,6 +119,9 @@
    1.38      /** The name of the file for the package usage info. */
    1.39      public static final DocPath PACKAGE_USE = DocPath.create("package-use.html");
    1.40  
    1.41 +    /** The name of the file for the overview frame. */
    1.42 +    public static final DocPath PROFILE_OVERVIEW_FRAME = DocPath.create("profile-overview-frame.html");
    1.43 +
    1.44      /** The name of the directory in which resources are generated.
    1.45       *  Also the name of the sub-package from which resources are read.
    1.46       */

mercurial