/*
 * Copyright (c) 1997, 2018, 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
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * 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 jdk.javadoc.internal.doclets.formats.html;

import jdk.javadoc.internal.doclets.formats.html.markup.Table;
import jdk.javadoc.internal.doclets.formats.html.markup.TableHeader;

import java.util.Arrays;
import java.util.List;

import javax.lang.model.element.Element;
import javax.lang.model.element.TypeElement;

import jdk.javadoc.internal.doclets.formats.html.markup.HtmlConstants;
import jdk.javadoc.internal.doclets.formats.html.markup.HtmlStyle;
import jdk.javadoc.internal.doclets.formats.html.markup.HtmlTree;
import jdk.javadoc.internal.doclets.formats.html.markup.Navigation;
import jdk.javadoc.internal.doclets.formats.html.markup.StringContent;
import jdk.javadoc.internal.doclets.toolkit.Content;
import jdk.javadoc.internal.doclets.toolkit.MemberSummaryWriter;

Writes nested class documentation in HTML format.

This is NOT part of any supported API. If you write code that depends on this, you do so at your own risk. This code and its internal interfaces are subject to change or deletion without notice.

Author:Robert Field, Atul M Dambalkar, Jamie Ho (rewrite), Bhavesh Patel (Modified)
/** * Writes nested class documentation in HTML format. * * <p><b>This is NOT part of any supported API. * If you write code that depends on this, you do so at your own risk. * This code and its internal interfaces are subject to change or * deletion without notice.</b> * * @author Robert Field * @author Atul M Dambalkar * @author Jamie Ho (rewrite) * @author Bhavesh Patel (Modified) */
public class NestedClassWriterImpl extends AbstractMemberWriter implements MemberSummaryWriter { public NestedClassWriterImpl(SubWriterHolderWriter writer, TypeElement typeElement) { super(writer, typeElement); } public NestedClassWriterImpl(SubWriterHolderWriter writer) { super(writer); }
{@inheritDoc}
/** * {@inheritDoc} */
@Override public Content getMemberSummaryHeader(TypeElement typeElement, Content memberSummaryTree) { memberSummaryTree.addContent(HtmlConstants.START_OF_NESTED_CLASS_SUMMARY); Content memberTree = writer.getMemberTreeHeader(); writer.addSummaryHeader(this, typeElement, memberTree); return memberTree; }
{@inheritDoc}
/** * {@inheritDoc} */
@Override public void addMemberTree(Content memberSummaryTree, Content memberTree) { writer.addMemberTree(memberSummaryTree, memberTree); }
{@inheritDoc}
/** * {@inheritDoc} */
@Override public void addSummaryLabel(Content memberTree) { Content label = HtmlTree.HEADING(HtmlConstants.SUMMARY_HEADING, contents.nestedClassSummary); memberTree.addContent(label); }
{@inheritDoc}
/** * {@inheritDoc} */
@Override public TableHeader getSummaryTableHeader(Element member) { Content label = utils.isInterface(member) ? contents.interfaceLabel : contents.classLabel; return new TableHeader(contents.modifierAndTypeLabel, label, contents.descriptionLabel); } @Override protected Table createSummaryTable() { String summary = resources.getText("doclet.Member_Table_Summary", resources.getText("doclet.Nested_Class_Summary"), resources.getText("doclet.nested_classes")); List<HtmlStyle> bodyRowStyles = Arrays.asList(HtmlStyle.colFirst, HtmlStyle.colSecond, HtmlStyle.colLast); return new Table(configuration.htmlVersion, HtmlStyle.memberSummary) .setSummary(summary) .setCaption(contents.getContent("doclet.Nested_Classes")) .setHeader(getSummaryTableHeader(typeElement)) .setRowScopeColumn(1) .setColumnStyles(bodyRowStyles); }
{@inheritDoc}
/** * {@inheritDoc} */
@Override public void addSummaryAnchor(TypeElement typeElement, Content memberTree) { memberTree.addContent(links.createAnchor( SectionName.NESTED_CLASS_SUMMARY)); }
{@inheritDoc}
/** * {@inheritDoc} */
@Override public void addInheritedSummaryAnchor(TypeElement typeElement, Content inheritedTree) { inheritedTree.addContent(links.createAnchor( SectionName.NESTED_CLASSES_INHERITANCE, utils.getFullyQualifiedName(typeElement))); }
{@inheritDoc}
/** * {@inheritDoc} */
@Override public void addInheritedSummaryLabel(TypeElement typeElement, Content inheritedTree) { Content classLink = writer.getPreQualifiedClassLink( LinkInfoImpl.Kind.MEMBER, typeElement, false); Content label; if (configuration.summarizeOverriddenMethods) { label = new StringContent(utils.isInterface(typeElement) ? resources.getText("doclet.Nested_Classes_Interfaces_Declared_In_Interface") : resources.getText("doclet.Nested_Classes_Interfaces_Declared_In_Class")); } else { label = new StringContent(utils.isInterface(typeElement) ? resources.getText("doclet.Nested_Classes_Interfaces_Inherited_From_Interface") : resources.getText("doclet.Nested_Classes_Interfaces_Inherited_From_Class")); } Content labelHeading = HtmlTree.HEADING(HtmlConstants.INHERITED_SUMMARY_HEADING, label); labelHeading.addContent(Contents.SPACE); labelHeading.addContent(classLink); inheritedTree.addContent(labelHeading); }
{@inheritDoc}
/** * {@inheritDoc} */
@Override protected void addSummaryLink(LinkInfoImpl.Kind context, TypeElement typeElement, Element member, Content tdSummary) { Content memberLink = HtmlTree.SPAN(HtmlStyle.memberNameLink, writer.getLink(new LinkInfoImpl(configuration, context, (TypeElement)member))); Content code = HtmlTree.CODE(memberLink); tdSummary.addContent(code); }
{@inheritDoc}
/** * {@inheritDoc} */
@Override protected void addInheritedSummaryLink(TypeElement typeElement, Element member, Content linksTree) { linksTree.addContent( writer.getLink(new LinkInfoImpl(configuration, LinkInfoImpl.Kind.MEMBER, (TypeElement)member))); }
{@inheritDoc}
/** * {@inheritDoc} */
@Override protected void addSummaryType(Element member, Content tdSummaryType) { addModifierAndType(member, null, tdSummaryType); }
{@inheritDoc}
/** * {@inheritDoc} */
@Override protected Content getDeprecatedLink(Element member) { return writer.getQualifiedClassLink(LinkInfoImpl.Kind.MEMBER, member); } }