Changeset 5403

Show
Ignore:
Timestamp:
01/24/08 15:15:01 (5 years ago)
Author:
tokuhirom
Message:

updated documents.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/Encode-JP-Mobile/branches/character/lib/Encode/JP/Mobile/Character.pm

    r5384 r5403  
    8888__END__ 
    8989 
     90=encodings utf8 
     91 
    9092=head1 NAME 
    9193 
     
    9799    $char->name; # => 晴れ 
    98100 
     101=head1 DESCRIPTION 
     102 
     103絵文字の文字を表現するオブジェクトです。 
     104 
     105=head1 METHODS 
     106 
     107=over 4 
     108 
     109=item from_unicode 
     110 
     111    my $char = Encode::JP::Mobile::Character->from_unicode(0xE63E); 
     112 
     113unicode からインスタンスをつくります。 
     114 
     115=item name 
     116 
     117    $char->name; # => 晴れ 
     118 
     119絵文字の名称を得ます。 
     120 
     121=item unicode_hex 
     122 
     123    $char->unicode_hex; # => "E63E" 
     124 
     125ユニコードの16進数4桁による文字列の表現を返します。 
     126 
     127=item fallback_name 
     128 
     129    $char->fallback_name('docomo'); # => (>3<) 
     130 
     131メール受信時のキャリヤ間相互絵文字変換において、絵文字に変換されないときに変換される文字列です。 
     132 
     133=item number 
     134 
     135    $char->number; 
     136 
     137絵文字番号を得ます。 
     138 
     139# docomo はどうするか問題。 
     140 
     141=back 
     142 
     143=head1 TODO 
     144 
     145carrier method 
     146 
     147performance tuning 
     148 
    99149=head1 AUTHOR 
    100150