The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Clownfish::DocuComment - Formatted comment a la Doxygen.

SYNOPSIS

    my $text = <<'END_COMMENT';
    /** Brief description.
     *
     * Start the long description.  More long description.
     * 
     * @param foo A Foo.
     * @param bar A Bar.
     * @return a return value.
     */
    END_COMMENT
    my $docucomment = Clownfish::DocuComment->parse($text);

CONSTRUCTORS

parse

    my $self = Clownfish::DocuComment->parse($text);

Parse comment text.

new

    my $self = Clownfish::DocuComment->new(
        description => "Brief.  Start long.  More long.",
        brief       => "Brief.",
        long        => "Long start. More long.",
        param_names => \@param_names,
        param_docs  => \@param_docs,
        retval      => "a return value."
    );
  • description - The complete description.

  • brief - The first sentence of the description (a "brief" description).

  • long - The description minus the first sentence.

  • param_names - An array of param names.

  • param_docs - An array containing a blurb for each param name.

  • retval - Return value.

METHODS

get_description get_brief get_long get_param_names get_param_docs get_retval

Accessors.

COPYRIGHT AND LICENSE

Copyright 2008-2011 Marvin Humphrey

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.