// This rule specifies whether you have to provide
// an @author tag in a constructor declaration.
// declaration. You can have several @author tags
// in a JavaDoc. The first author ie. the creator
// of the constructor has to be top most.


/**
 * <code>Foo</code> is a useless class ;)
 *
 * @author Donal Duck
 * @author Mickey Mouse
 * @version 0.1
 */

public class Foo
{
    /**
     * Default constructor
     * @author Mickey Mouse
     */

    public Foo()
    {
        ...