source: trunk/LATMOS-Accounts/lib/LATMOS/Accounts/Bases/Sql/Sutype.pm @ 1365

Last change on this file since 1365 was 1023, checked in by nanardon, 12 years ago
  • complete POD

This patch a basic documentation to all functions.
It also add two test to ensure all POD syntax are correct and coverage is full.

  • Property svn:keywords set to Id Rev
File size: 843 bytes
Line 
1package LATMOS::Accounts::Bases::Sql::Sutype;
2
3use 5.010000;
4use strict;
5use warnings;
6
7use base qw(LATMOS::Accounts::Bases::Sql::objects);
8
9our $VERSION = (q$Rev$ =~ /^Rev: (\d+) /)[0];
10
11=head1 NAME
12
13LATMOS::Accounts::Bases::Sql::Sutype - Structural type
14
15=head1 DESCRIPTION
16
17Type for groups.
18
19=cut
20
21sub _object_table { 'su_type' }
22
23sub _key_field { 'name' }
24
25sub _has_extended_attributes { 0 }
26
271;
28
29__END__
30
31=head1 SEE ALSO
32
33L<LATMOS::Accounts::Bases::Sql>
34
35=head1 AUTHOR
36
37Olivier Thauvin, E<lt>olivier.thauvin@latmos.ipsl.frE<gt>
38
39=head1 COPYRIGHT AND LICENSE
40
41Copyright (C) 2008, 2009, 2010, 2011, 2012 CNRS SA/CETP/LATMOS
42
43This library is free software; you can redistribute it and/or modify
44it under the same terms as Perl itself, either Perl version 5.10.0 or,
45at your option, any later version of Perl 5 you may have available.
46
47
48=cut
Note: See TracBrowser for help on using the repository browser.