The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

WWW::CheckPad::CheckIte - A class to control check item of check*pad.

SYNOPSIS

See the WWW::CheckPad

DESCRIPTION

check*padのTodo項目を扱う為のクラスです。APIは極力Class::DBIと 同様のインターフェースを持つように設計されています。

Class Method

retrieve_all_of

  my @checkitems = WWW::CheckPad::CheckItem->retrieve_all_of($chechlist_id);

retrieve_all_ofは与えられたチェックリストの全Todo項目を返します。 通常、このメソッドを直接呼ぶ必要はありません。代わりに WWW::CheckList-checkitems()>で同様に、しかもきれいに書くことが出来ます。

Instance Method

update

  $checkitem->update();

このメソッドを呼ぶとこのTodo項目の情報をアップデートします。現在、変更できる 値亜はタイトルだけなので、次のように使うことが多いと思います。

  $checkitem->title('update title'); ## update the title
  $checkitem->update();

delete

  $checkitem->delete();

このTodo項目を削除します。

finish

  $checkitem->finish();

このTodo項目の状態を”終了”にします。これは即座に反映されます。

unfinish

  $checkitem->unfinish();

このTodo項目の状態を”未終了”にします。これは即座に反映されます。

SEE ALSO

WWW::CheckPad

WWW::CheckPad::CheckList

AUTHOR

Ken Takeshige, <ken.takeshige@gmail.com>

http://d.hatena.ne.jp/ya_ken/

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.

1 POD Error

The following errors were encountered while parsing the POD:

Around line 11:

Non-ASCII character seen before =encoding in 'check*padのTodo項目を扱う為のクラスです。APIは極力Class::DBIと'. Assuming UTF-8