~ubuntu-branches/ubuntu/lucid/libjcommon-java/lucid

« back to all changes in this revision

Viewing changes to checkstyle/javadocs.xml

  • Committer: Bazaar Package Importer
  • Author(s): Wolfgang Baer
  • Date: 2006-02-09 15:58:13 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060209155813-fzi9zwh2rzedbllq
Tags: 1.0.0-1
* New stable upstream release (closes: #328574)
* Move to main - build with kaffe
* Use cdbs build system - added cdbs build-dependency
* Move package to pkg-java-maintainers for comaintenance, 
  added Christian Bayle and myself as uploaders
* Removed unneeded README.Debian
* Added README.Debian-source how the upstream tarball was cleaned
* Move big documentation in an own -doc package
* Register javadoc api with doc-base
* Standards-Version 3.6.2 (no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<!DOCTYPE module PUBLIC
 
3
    "-//Puppy Crawl//DTD Check Configuration 1.1//EN"
 
4
    "http://www.puppycrawl.com/dtds/configuration_1_1.dtd">
 
5
 
 
6
<!--
 
7
 
 
8
  Checkstyle configuration for checking Javadocs
 
9
 
 
10
-->
 
11
 
 
12
<module name="Checker">
 
13
 
 
14
    <!-- Checks that a package.html file exists for each package.     -->
 
15
    <!-- See http://checkstyle.sf.net/config_javadoc.html#PackageHtml -->
 
16
    <module name="PackageHtml"/>
 
17
 
 
18
    <module name="TreeWalker">
 
19
 
 
20
        <!-- Checks for Javadoc comments.                     -->
 
21
        <!-- See http://checkstyle.sf.net/config_javadoc.html -->
 
22
        <module name="JavadocMethod"/>
 
23
        <module name="JavadocType"/>
 
24
        <module name="JavadocVariable"/>
 
25
 
 
26
    </module>
 
27
 
 
28
</module>