Overview
view provides a full view of the DBCP package,
generating quite a big diagram (click on the diagram to show a full size version).package org.apache.commons; /** * @view * @opt inferrel * @opt inferdep * @opt useimports * * @match class .* * @opt nodefillcolor LightGray * * @match class org.apache.commons.* * @opt nodefillcolor PaleGreen * * @match class org.apache.commons.dbcp.* * @opt nodefillcolor LemonChiffon * * @match class java.*|org.xml.* * @opt hide * * @match class java.sql.* * @opt !hide * * @match class java.sql\.(Ref|Time|Timestamp|Array|Date|Time|Clob|Blob|SQLException|.*MetaData.*|SQLWarning) * @opt hide */ public abstract class BaseView { } /** * @view */ public class Overview extends BaseView { }
CommonsDbcp
view concentrates on the content of org.apache.commons.dbcp
package, hiding other packages and subpackages available in the sources
(click on the diagram to show a full size version).package org.apache.commons; /** * @view * * @match class org.apache.commons.* * @opt hide * * @match class org.apache.commons.dbcp..* * @opt !hide * * @match class org.apache.commons.dbcp..*\..* * @opt hide */ public class CommonsDbcp extends BaseView {}
Statement
view shows only the Statement related
classes and their dependencies.
package org.apache.commons; /** * @view * * @match class org.apache.commons.* * @opt hide * * @match class org.apache.commons.dbcp\..*Statement.* * @opt !hide * * @match class org.apache.commons.dbcp..*\..* * @opt hide */ public class Statement extends BaseView { }
Contents | « Previous Next (Running the Doclet from Ant) » |