// This rule specifies whether you have to
provide
// a @param tag for every parameter declared in the
// the method.
...
public class Foo
{
...
/**
* persist internal data to output stream
*
* @param stream medium to persist against
*/
public void persist(OutputStream stream)
{
...