NAME
WWW::CheckPad::CheckIte - A class to control check item of check*pad.
SYNOPSIS
See the WWW::CheckPad
DESCRIPTION
This class will control the check item.
Class Method
- retrieve_all_of
-
my @checkitems = WWW::CheckPad::CheckItem->retrieve_all_of($chechlist_id);
retrieve_all_of
will return all of check item that is related to$checklist_id
. You don't need to use this directry usually. You better use $checklist->checkitems() instead.
Instance Method
- update
-
$checkitem->update();
Will update the information which
$checkitem
has. The only information you can update istitle
, so you will use update like this:$checkitem->title('update title'); ## update the title $checkitem->update();
- delete
-
$checkitem->delete();
Just simply delete the check item.
- finish
-
$checkitem->finish();
Change the status of todo to "Finished".
- unfinish
-
$checkitem->unfinish();
Change the status of todo to "Unfinished".
SEE ALSO
WWW::CheckPad
WWW::CheckPad::CheckList
AUTHOR
Ken Takeshige, <ken.takeshige@gmail.com>
COPYRIGHT AND LICENSE
Copyright (C) 2006 by Ken Takeshige
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.
4 POD Errors
The following errors were encountered while parsing the POD:
- Around line 270:
'=item' outside of any '=over'
- Around line 278:
You forgot a '=back' before '=head2'
- Around line 280:
'=item' outside of any '=over'
- Around line 308:
You forgot a '=back' before '=head1'