First page Back Continue Last page Overview Graphics
Plugins (Cont’d)
All plugins support producing output to STDOUT (default), a file handle, a file name, an array and a scalar.
All plugins support getting and setting attributes using set_attr and get_attr methods.
In fact,
- $rep = Data::Report->new({ foo => "bar" });
is identical to
- $rep = Data::Report->new;
$rep->set_foo("bar");
Choose and mix to your liking.