src/share/classes/com/sun/tools/doclets/internal/toolkit/AbstractDoclet.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File langtools Cdiff src/share/classes/com/sun/tools/doclets/internal/toolkit/AbstractDoclet.java

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

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2003, 2012, 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 --- 1,7 ---- /* ! * Copyright (c) 2003, 2013, 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
*** 26,37 **** package com.sun.tools.doclets.internal.toolkit; import com.sun.javadoc.*; import com.sun.tools.doclets.internal.toolkit.builders.*; import com.sun.tools.doclets.internal.toolkit.util.*; - import java.io.File; - import java.util.StringTokenizer; /** * An abstract implementation of a Doclet. * * <p><b>This is NOT part of any supported API. --- 26,35 ----
*** 126,135 **** --- 124,134 ---- generateClassFiles(root, classtree); Util.copyDocFiles(configuration, DocPaths.DOC_FILES); PackageListWriter.generate(configuration); generatePackageFiles(classtree); + generateProfileFiles(); generateOtherFiles(root, classtree); configuration.tagletManager.printReport(); }
*** 146,155 **** --- 145,160 ---- AbstractBuilder serializedFormBuilder = builderFactory.getSerializedFormBuilder(); serializedFormBuilder.build(); } /** + * Generate the profile documentation. + * + */ + protected abstract void generateProfileFiles() throws Exception; + + /** * Generate the package documentation. * * @param classtree the data structure representing the class tree. */ protected abstract void generatePackageFiles(ClassTree classtree) throws Exception;
src/share/classes/com/sun/tools/doclets/internal/toolkit/AbstractDoclet.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File