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
*** old/src/share/classes/com/sun/tools/doclets/internal/toolkit/AbstractDoclet.java	Fri Jan 18 02:47:48 2013
--- new/src/share/classes/com/sun/tools/doclets/internal/toolkit/AbstractDoclet.java	Fri Jan 18 02:47:47 2013

*** 1,7 **** --- 1,7 ---- /* ! * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved. ! * 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 **** --- 26,35 ---- 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.
*** 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