Java Code Examples for com.sun.tools.doclets.internal.toolkit.util.DocLink#fragment()

The following examples show how to use com.sun.tools.doclets.internal.toolkit.util.DocLink#fragment() . 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-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 2
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 3
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 where      Position of the link in the file.
 * @return a DocLink object for the hyper link
 */
public DocLink getDocLink(String where) {
    return DocLink.fragment(getName(where));
}
 
Example 4
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 5
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 6
Source File: HtmlDocWriter.java    From hottub with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get the link.
 *
 * @param where      Position of the link in the file.
 * @return a DocLink object for the hyper link
 */
public DocLink getDocLink(String where) {
    return DocLink.fragment(getName(where));
}
 
Example 7
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 8
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 9
Source File: HtmlDocWriter.java    From openjdk-jdk9 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get the link.
 *
 * @param where      Position of the link in the file.
 * @return a DocLink object for the hyper link
 */
public DocLink getDocLink(String where) {
    return DocLink.fragment(getName(where));
}
 
Example 10
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 11
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 12
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 where      Position of the link in the file.
 * @return a DocLink object for the hyper link
 */
public DocLink getDocLink(String where) {
    return DocLink.fragment(getName(where));
}
 
Example 13
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 14
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 15
Source File: HtmlDocWriter.java    From openjdk-jdk8u with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get the link.
 *
 * @param where      Position of the link in the file.
 * @return a DocLink object for the hyper link
 */
public DocLink getDocLink(String where) {
    return DocLink.fragment(getName(where));
}
 
Example 16
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 17
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 18
Source File: HtmlDocWriter.java    From openjdk-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Get the link.
 *
 * @param where      Position of the link in the file.
 * @return a DocLink object for the hyper link
 */
public DocLink getDocLink(String where) {
    return DocLink.fragment(getName(where));
}
 
Example 19
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));
}
 
Example 20
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 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());
}