Show
Ignore:
Timestamp:
07/25/08 22:57:56 (5 years ago)
Author:
hanekomu
Message:

continued to update distribution to standard style

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/Class-Value-URI/trunk/lib/Class/Value/URI/ftp.pm

    r9750 r16453  
    3131__END__ 
    3232 
    33 {% USE p = PodGenerated %} 
     33 
    3434 
    3535=head1 NAME 
    3636 
    37 {% p.package %} - value class for FTP URIs 
     37Class::Value::URI::ftp - value class for FTP URIs 
    3838 
    3939=head1 SYNOPSIS 
    4040 
    41     {% p.package %}->new; 
     41    Class::Value::URI::ftp->new; 
    4242 
    4343=head1 DESCRIPTION 
     
    5050=over 4 
    5151 
    52 {% p.write_methods %} 
     52=item clear_password 
     53 
     54    $obj->clear_password; 
     55 
     56Clears the boolean value by setting it to 0. 
     57 
     58=item clear_type 
     59 
     60    $obj->clear_type; 
     61 
     62Clears the value. 
     63 
     64=item password 
     65 
     66    $obj->password($value); 
     67    my $value = $obj->password; 
     68 
     69If called without an argument, returns the boolean value (0 or 1). If called 
     70with an argument, it normalizes it to the boolean value. That is, the values 
     710, undef and the empty string become 0; everything else becomes 1. 
     72 
     73=item password_clear 
     74 
     75    $obj->password_clear; 
     76 
     77Clears the boolean value by setting it to 0. 
     78 
     79=item password_set 
     80 
     81    $obj->password_set; 
     82 
     83Sets the boolean value to 1. 
     84 
     85=item set_password 
     86 
     87    $obj->set_password; 
     88 
     89Sets the boolean value to 1. 
     90 
     91=item type 
     92 
     93    my $value = $obj->type; 
     94    $obj->type($value); 
     95 
     96A basic getter/setter method. If called without an argument, it returns the 
     97value. If called with a single argument, it sets the value. 
     98 
     99=item type_clear 
     100 
     101    $obj->type_clear; 
     102 
     103Clears the value. 
    53104 
    54105=back 
    55106 
    56 {% p.write_inheritance %} 
    57  
    58 {% PROCESS standard_pod %} 
     107Class::Value::URI::ftp inherits from L<Class::Value::SemanticAdapter>. 
     108 
     109The superclass L<Class::Value::SemanticAdapter> defines these methods and 
     110functions: 
     111 
     112    adaptee(), is_valid_normalized_value(), is_valid_value(), 
     113    normalize_value(), semantic_class_name() 
     114 
     115The superclass L<Class::Value> defines these methods and functions: 
     116 
     117    new(), MUNGE_CONSTRUCTOR_ARGS(), check(), clear_exception_container(), 
     118    clear_notify_delegate(), comparable(), exception_container(), 
     119    exception_container_clear(), get_value(), init(), is_defined(), 
     120    is_valid(), is_well_formed(), is_well_formed_value(), normalize(), 
     121    notify_delegate(), notify_delegate_clear(), run_checks(), 
     122    run_checks_with_exception_container(), send_notify_value_invalid(), 
     123    send_notify_value_normalized(), send_notify_value_not_wellformed(), 
     124    set_value(), skip_checks(), skip_dirtying(), skip_normalizations(), 
     125    str_cmp(), stringify(), throw_single_exception(), value() 
     126 
     127The superclass L<Class::Accessor::Complex> defines these methods and 
     128functions: 
     129 
     130    mk_abstract_accessors(), mk_array_accessors(), mk_boolean_accessors(), 
     131    mk_class_array_accessors(), mk_class_hash_accessors(), 
     132    mk_class_scalar_accessors(), mk_concat_accessors(), 
     133    mk_forward_accessors(), mk_hash_accessors(), mk_integer_accessors(), 
     134    mk_new(), mk_object_accessors(), mk_scalar_accessors(), 
     135    mk_set_accessors(), mk_singleton() 
     136 
     137The superclass L<Class::Accessor> defines these methods and functions: 
     138 
     139    _carp(), _croak(), _mk_accessors(), accessor_name_for(), 
     140    best_practice_accessor_name_for(), best_practice_mutator_name_for(), 
     141    follow_best_practice(), get(), make_accessor(), make_ro_accessor(), 
     142    make_wo_accessor(), mk_accessors(), mk_ro_accessors(), 
     143    mk_wo_accessors(), mutator_name_for(), set() 
     144 
     145The superclass L<Class::Accessor::Installer> defines these methods and 
     146functions: 
     147 
     148    install_accessor() 
     149 
     150The superclass L<Class::Accessor::Constructor> defines these methods and 
     151functions: 
     152 
     153    _make_constructor(), mk_constructor(), mk_constructor_with_dirty(), 
     154    mk_singleton_constructor() 
     155 
     156The superclass L<Data::Inherited> defines these methods and functions: 
     157 
     158    every_hash(), every_list(), flush_every_cache_by_key() 
     159 
     160The superclass L<Class::Accessor::Constructor::Base> defines these methods 
     161and functions: 
     162 
     163    STORE(), clear_dirty(), clear_hygienic(), clear_unhygienic(), 
     164    contains_hygienic(), contains_unhygienic(), delete_hygienic(), 
     165    delete_unhygienic(), dirty(), dirty_clear(), dirty_set(), 
     166    elements_hygienic(), elements_unhygienic(), hygienic(), 
     167    hygienic_clear(), hygienic_contains(), hygienic_delete(), 
     168    hygienic_elements(), hygienic_insert(), hygienic_is_empty(), 
     169    hygienic_size(), insert_hygienic(), insert_unhygienic(), 
     170    is_empty_hygienic(), is_empty_unhygienic(), set_dirty(), 
     171    size_hygienic(), size_unhygienic(), unhygienic(), unhygienic_clear(), 
     172    unhygienic_contains(), unhygienic_delete(), unhygienic_elements(), 
     173    unhygienic_insert(), unhygienic_is_empty(), unhygienic_size() 
     174 
     175The superclass L<Tie::StdHash> defines these methods and functions: 
     176 
     177    CLEAR(), DELETE(), EXISTS(), FETCH(), FIRSTKEY(), NEXTKEY(), SCALAR(), 
     178    TIEHASH() 
     179 
     180=head1 BUGS AND LIMITATIONS 
     181 
     182No bugs have been reported. 
     183 
     184Please report any bugs or feature requests through the web interface at 
     185L<http://rt.cpan.org>. 
     186 
     187=head1 INSTALLATION 
     188 
     189See perlmodinstall for information and options on installing Perl modules. 
     190 
     191=head1 AVAILABILITY 
     192 
     193The latest version of this module is available from the Comprehensive Perl 
     194Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN 
     195site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. 
     196 
     197=head1 AUTHORS 
     198 
     199Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> 
     200 
     201=head1 COPYRIGHT AND LICENSE 
     202 
     203Copyright 2007-2008 by the authors. 
     204 
     205This library is free software; you can redistribute it and/or modify 
     206it under the same terms as Perl itself. 
     207 
    59208 
    60209=cut