File Coverage

blib/lib/Biblio/ILL/ISO/SecurityProblem.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::SecurityProblem;
2              
3             =head1 NAME
4              
5             Biblio::ILL::ISO::SecurityProblem
6              
7             =cut
8              
9 4     4   24 use Biblio::ILL::ISO::ILLASNtype;
  4         10  
  4         113  
10 4     4   23 use Biblio::ILL::ISO::ILLString;
  4         10  
  4         86  
11              
12 4     4   22 use Carp;
  4         9  
  4         403  
13              
14             =head1 VERSION
15              
16             Version 0.01
17              
18             =cut
19              
20             our $VERSION = '0.01';
21             #---------------------------------------------------------------------------
22             # Mods
23             # 0.01 - 2003.08.12 - original version
24             #---------------------------------------------------------------------------
25              
26             =head1 DESCRIPTION
27              
28             Biblio::ILL::ISO::SecurityProblem is a derivation of Biblio::ILL::ISO::ILLString
29             (in fact, it is just a renamed ILLString).
30              
31             =head1 USES
32              
33             Biblio::ILL::ISO::ILLString
34              
35             =head1 USED IN
36              
37             Biblio::ILL::ISO::UserErrorReport
38              
39             =cut
40              
41 4     4   193 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             Security-Problem ::= 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              
79             1;