File Coverage

blib/lib/Biblio/ILL/ISO/AccountNumber.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 14 14 100.0


line stmt bran cond sub pod time code
1             package Biblio::ILL::ISO::AccountNumber;
2              
3             =head1 NAME
4              
5             Biblio::ILL::ISO::AccountNumber
6              
7             =cut
8 4     4   2215 use Biblio::ILL::ISO::ILLASNtype;
  4         9  
  4         105  
9 4     4   3341 use Biblio::ILL::ISO::ILLString;
  4         14  
  4         113  
10              
11 4     4   27 use Carp;
  4         25  
  4         371  
12              
13             =head1 VERSION
14              
15             Version 0.01
16              
17             =cut
18              
19             our $VERSION = '0.01';
20             #---------------------------------------------------------------------------
21             # Mods
22             # 0.01 - 2003.07.15 - original version
23             #---------------------------------------------------------------------------
24              
25             =head1 DESCRIPTION
26              
27             Biblio::ILL::ISO::AccountNumber is a derivation of Biblio::ILL::ISO::ILLString
28             (in fact, it is just a renamed ILLString).
29              
30             =head1 USES
31              
32             Biblio::ILL::ISO::ILLString
33              
34             =head1 USED IN
35              
36             Biblio::ILL::ISO::CostInfoType
37             Biblio::ILL::ISO::SendToListType
38              
39             =cut
40              
41 4     4   185 BEGIN{@ISA = qw ( Biblio::ILL::ISO::ILLString
42             Biblio::ILL::ISO::ILLASNtype
43             );} # inherit from ILLASNtype
44              
45             =head1 FROM THE ASN DEFINITION
46            
47             Account-Number ::= ILL-String
48              
49             =cut
50              
51             =head1 SEE ALSO
52              
53             See the README for system design notes.
54             See the parent class(es) for other available methods.
55              
56             For more information on Interlibrary Loan standards (ISO 10160/10161),
57             a good place to start is:
58              
59             http://www.nlc-bnc.ca/iso/ill/main.htm
60              
61             =cut
62              
63             =head1 AUTHOR
64              
65             David Christensen,
66              
67             =cut
68              
69              
70             =head1 COPYRIGHT AND LICENSE
71              
72             Copyright 2003 by David Christensen
73              
74             This library is free software; you can redistribute it and/or modify it
75             under the same terms as Perl itself.
76              
77             =cut
78             1;