/* RootDoc.java -- Information about a javadoc run. Copyright (C) 1999 Free Software Foundation, Inc. This file is part of the com.sun.javadoc implementation of GNU Classpath. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. This program 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 for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA. */ package com.sun.javadoc; public interface RootDoc extends Doc, DocErrorReporter { /** * This method returns the command line element used to invoke this * instance of javadoc. * * @return The command line arguments for this run. */ public abstract String[][] options(); /*************************************************************************/ /** * This method returns the list of packages that were specified on the * command line. * * @return The packages specified on the command line. */ public abstract PackageDoc[] specifiedPackages(); /*************************************************************************/ /** * This method returns the list of classes that were specified on the * command line. * * @return The classes specified on the command line. */ public abstract ClassDoc[] specifiedClasses(); /*************************************************************************/ /** * This method returns the list of classes and interfaces to be documented. * * @return The list of classes and interfaces to be documented. */ public abstract ClassDoc[] classes(); /*************************************************************************/ /** * This method returns a ClassDoc instance for the * name class or interface. * * @param name The class or interface to look up. * * @return The requested ClassDoc, or null if the specified * class is not part of this javadoc run. */ public abstract ClassDoc classNamed(String name); /*************************************************************************/ /** * This method returns a PackageDoc instance for the * named package. * * @param name The package to look up. * * @return The requested PackageDoc, or null if the specified * package is not part of this javadoc run. */ public abstract PackageDoc packageNamed(String name); } // interface RootDoc