com.sun.tools.doclets.formats.html.SectionName Java Examples

The following examples show how to use com.sun.tools.doclets.formats.html.SectionName. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: HtmlDocWriter.java    From openjdk-jdk9 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get Html Hyper Link Content.
 *
 * @param sectionName      The section name to which the link will be created.
 * @param label            Tag for the link.
 * @return a content tree for the hyper link
 */
public Content getHyperLink(SectionName sectionName,
                           Content label) {
    return getHyperLink(getDocLink(sectionName), label, "", "");
}
 
Example #2
Source File: HtmlDocWriter.java    From openjdk-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get the link.
 *
 * @param sectionName      The section name combined with where to which the link
 *                         will be created.
 * @param where            The fragment combined with sectionName to which the link
 *                         will be created.
 * @return a DocLink object for the hyper link
 */
public DocLink getDocLink(SectionName sectionName, String where) {
    return DocLink.fragment(sectionName.getName() + getName(where));
}
 
Example #3
Source File: HtmlDocWriter.java    From openjdk-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get the link.
 *
 * @param sectionName      The section name to which the link will be created.
 * @return a DocLink object for the hyper link
 */
public DocLink getDocLink(SectionName sectionName) {
    return DocLink.fragment(sectionName.getName());
}
 
Example #4
Source File: HtmlDocWriter.java    From openjdk-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get Html Hyper Link Content.
 *
 * @param sectionName      The section name combined with where to which the link
 *                         will be created.
 * @param where            The fragment combined with sectionName to which the link
 *                         will be created.
 * @param label            Tag for the link.
 * @return a content tree for the hyper link
 */
public Content getHyperLink(SectionName sectionName, String where,
                           Content label) {
    return getHyperLink(getDocLink(sectionName, where), label, "", "");
}
 
Example #5
Source File: HtmlDocWriter.java    From openjdk-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get Html Hyper Link Content.
 *
 * @param sectionName      The section name to which the link will be created.
 * @param label            Tag for the link.
 * @return a content tree for the hyper link
 */
public Content getHyperLink(SectionName sectionName,
                           Content label) {
    return getHyperLink(getDocLink(sectionName), label, "", "");
}
 
Example #6
Source File: HtmlDocWriter.java    From openjdk-8-source with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get the link.
 *
 * @param sectionName      The section name combined with where to which the link
 *                         will be created.
 * @param where            The fragment combined with sectionName to which the link
 *                         will be created.
 * @return a DocLink object for the hyper link
 */
public DocLink getDocLink(SectionName sectionName, String where) {
    return DocLink.fragment(sectionName.getName() + getName(where));
}
 
Example #7
Source File: HtmlDocWriter.java    From openjdk-8-source with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get the link.
 *
 * @param sectionName      The section name to which the link will be created.
 * @return a DocLink object for the hyper link
 */
public DocLink getDocLink(SectionName sectionName) {
    return DocLink.fragment(sectionName.getName());
}
 
Example #8
Source File: HtmlDocWriter.java    From openjdk-8-source with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get Html Hyper Link Content.
 *
 * @param sectionName      The section name combined with where to which the link
 *                         will be created.
 * @param where            The fragment combined with sectionName to which the link
 *                         will be created.
 * @param label            Tag for the link.
 * @return a content tree for the hyper link
 */
public Content getHyperLink(SectionName sectionName, String where,
                           Content label) {
    return getHyperLink(getDocLink(sectionName, where), label, "", "");
}
 
Example #9
Source File: HtmlDocWriter.java    From openjdk-8-source with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get Html Hyper Link Content.
 *
 * @param sectionName      The section name to which the link will be created.
 * @param label            Tag for the link.
 * @return a content tree for the hyper link
 */
public Content getHyperLink(SectionName sectionName,
                           Content label) {
    return getHyperLink(getDocLink(sectionName), label, "", "");
}
 
Example #10
Source File: HtmlDocWriter.java    From hottub with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get the link.
 *
 * @param sectionName      The section name combined with where to which the link
 *                         will be created.
 * @param where            The fragment combined with sectionName to which the link
 *                         will be created.
 * @return a DocLink object for the hyper link
 */
public DocLink getDocLink(SectionName sectionName, String where) {
    return DocLink.fragment(sectionName.getName() + getName(where));
}
 
Example #11
Source File: HtmlDocWriter.java    From hottub with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get the link.
 *
 * @param sectionName      The section name to which the link will be created.
 * @return a DocLink object for the hyper link
 */
public DocLink getDocLink(SectionName sectionName) {
    return DocLink.fragment(sectionName.getName());
}
 
Example #12
Source File: HtmlDocWriter.java    From hottub with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get Html Hyper Link Content.
 *
 * @param sectionName      The section name combined with where to which the link
 *                         will be created.
 * @param where            The fragment combined with sectionName to which the link
 *                         will be created.
 * @param label            Tag for the link.
 * @return a content tree for the hyper link
 */
public Content getHyperLink(SectionName sectionName, String where,
                           Content label) {
    return getHyperLink(getDocLink(sectionName, where), label, "", "");
}
 
Example #13
Source File: HtmlDocWriter.java    From hottub with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get Html Hyper Link Content.
 *
 * @param sectionName      The section name to which the link will be created.
 * @param label            Tag for the link.
 * @return a content tree for the hyper link
 */
public Content getHyperLink(SectionName sectionName,
                           Content label) {
    return getHyperLink(getDocLink(sectionName), label, "", "");
}
 
Example #14
Source File: HtmlDocWriter.java    From openjdk-jdk9 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get the link.
 *
 * @param sectionName      The section name combined with where to which the link
 *                         will be created.
 * @param where            The fragment combined with sectionName to which the link
 *                         will be created.
 * @return a DocLink object for the hyper link
 */
public DocLink getDocLink(SectionName sectionName, String where) {
    return DocLink.fragment(sectionName.getName() + getName(where));
}
 
Example #15
Source File: HtmlDocWriter.java    From openjdk-jdk9 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get the link.
 *
 * @param sectionName      The section name to which the link will be created.
 * @return a DocLink object for the hyper link
 */
public DocLink getDocLink(SectionName sectionName) {
    return DocLink.fragment(sectionName.getName());
}
 
Example #16
Source File: HtmlDocWriter.java    From openjdk-jdk9 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get Html Hyper Link Content.
 *
 * @param sectionName      The section name combined with where to which the link
 *                         will be created.
 * @param where            The fragment combined with sectionName to which the link
 *                         will be created.
 * @param label            Tag for the link.
 * @return a content tree for the hyper link
 */
public Content getHyperLink(SectionName sectionName, String where,
                           Content label) {
    return getHyperLink(getDocLink(sectionName, where), label, "", "");
}
 
Example #17
Source File: HtmlDocWriter.java    From TencentKona-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get Html Hyper Link Content.
 *
 * @param sectionName      The section name to which the link will be created.
 * @param label            Tag for the link.
 * @return a content tree for the hyper link
 */
public Content getHyperLink(SectionName sectionName,
                           Content label) {
    return getHyperLink(getDocLink(sectionName), label, "", "");
}
 
Example #18
Source File: HtmlDocWriter.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get the link.
 *
 * @param sectionName      The section name combined with where to which the link
 *                         will be created.
 * @param where            The fragment combined with sectionName to which the link
 *                         will be created.
 * @return a DocLink object for the hyper link
 */
public DocLink getDocLink(SectionName sectionName, String where) {
    return DocLink.fragment(sectionName.getName() + getName(where));
}
 
Example #19
Source File: HtmlDocWriter.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get the link.
 *
 * @param sectionName      The section name to which the link will be created.
 * @return a DocLink object for the hyper link
 */
public DocLink getDocLink(SectionName sectionName) {
    return DocLink.fragment(sectionName.getName());
}
 
Example #20
Source File: HtmlDocWriter.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get Html Hyper Link Content.
 *
 * @param sectionName      The section name combined with where to which the link
 *                         will be created.
 * @param where            The fragment combined with sectionName to which the link
 *                         will be created.
 * @param label            Tag for the link.
 * @return a content tree for the hyper link
 */
public Content getHyperLink(SectionName sectionName, String where,
                           Content label) {
    return getHyperLink(getDocLink(sectionName, where), label, "", "");
}
 
Example #21
Source File: HtmlDocWriter.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get Html Hyper Link Content.
 *
 * @param sectionName      The section name to which the link will be created.
 * @param label            Tag for the link.
 * @return a content tree for the hyper link
 */
public Content getHyperLink(SectionName sectionName,
                           Content label) {
    return getHyperLink(getDocLink(sectionName), label, "", "");
}
 
Example #22
Source File: HtmlDocWriter.java    From openjdk-jdk8u with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get the link.
 *
 * @param sectionName      The section name combined with where to which the link
 *                         will be created.
 * @param where            The fragment combined with sectionName to which the link
 *                         will be created.
 * @return a DocLink object for the hyper link
 */
public DocLink getDocLink(SectionName sectionName, String where) {
    return DocLink.fragment(sectionName.getName() + getName(where));
}
 
Example #23
Source File: HtmlDocWriter.java    From openjdk-jdk8u with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get the link.
 *
 * @param sectionName      The section name to which the link will be created.
 * @return a DocLink object for the hyper link
 */
public DocLink getDocLink(SectionName sectionName) {
    return DocLink.fragment(sectionName.getName());
}
 
Example #24
Source File: HtmlDocWriter.java    From openjdk-jdk8u with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get Html Hyper Link Content.
 *
 * @param sectionName      The section name combined with where to which the link
 *                         will be created.
 * @param where            The fragment combined with sectionName to which the link
 *                         will be created.
 * @param label            Tag for the link.
 * @return a content tree for the hyper link
 */
public Content getHyperLink(SectionName sectionName, String where,
                           Content label) {
    return getHyperLink(getDocLink(sectionName, where), label, "", "");
}
 
Example #25
Source File: HtmlDocWriter.java    From openjdk-jdk8u with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get Html Hyper Link Content.
 *
 * @param sectionName      The section name to which the link will be created.
 * @param label            Tag for the link.
 * @return a content tree for the hyper link
 */
public Content getHyperLink(SectionName sectionName,
                           Content label) {
    return getHyperLink(getDocLink(sectionName), label, "", "");
}
 
Example #26
Source File: HtmlDocWriter.java    From jdk8u60 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get the link.
 *
 * @param sectionName      The section name combined with where to which the link
 *                         will be created.
 * @param where            The fragment combined with sectionName to which the link
 *                         will be created.
 * @return a DocLink object for the hyper link
 */
public DocLink getDocLink(SectionName sectionName, String where) {
    return DocLink.fragment(sectionName.getName() + getName(where));
}
 
Example #27
Source File: HtmlDocWriter.java    From jdk8u60 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get the link.
 *
 * @param sectionName      The section name to which the link will be created.
 * @return a DocLink object for the hyper link
 */
public DocLink getDocLink(SectionName sectionName) {
    return DocLink.fragment(sectionName.getName());
}
 
Example #28
Source File: HtmlDocWriter.java    From jdk8u60 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get Html Hyper Link Content.
 *
 * @param sectionName      The section name combined with where to which the link
 *                         will be created.
 * @param where            The fragment combined with sectionName to which the link
 *                         will be created.
 * @param label            Tag for the link.
 * @return a content tree for the hyper link
 */
public Content getHyperLink(SectionName sectionName, String where,
                           Content label) {
    return getHyperLink(getDocLink(sectionName, where), label, "", "");
}
 
Example #29
Source File: HtmlDocWriter.java    From jdk8u60 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get Html Hyper Link Content.
 *
 * @param sectionName      The section name to which the link will be created.
 * @param label            Tag for the link.
 * @return a content tree for the hyper link
 */
public Content getHyperLink(SectionName sectionName,
                           Content label) {
    return getHyperLink(getDocLink(sectionName), label, "", "");
}
 
Example #30
Source File: HtmlDocWriter.java    From TencentKona-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get the link.
 *
 * @param sectionName      The section name combined with where to which the link
 *                         will be created.
 * @param where            The fragment combined with sectionName to which the link
 *                         will be created.
 * @return a DocLink object for the hyper link
 */
public DocLink getDocLink(SectionName sectionName, String where) {
    return DocLink.fragment(sectionName.getName() + getName(where));
}