File Coverage

blib/lib/StateML/Constants.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package StateML::Constants;
2              
3             $VERSION = 0.000_1;
4              
5             =head1 NAME
6              
7             StateML::Constants - A very few constants shared by various StateML modules
8              
9             =head1 SYNOPSIS
10              
11             =head1 DESCRIPTION
12              
13             =over
14              
15             =cut
16              
17 1     1   5883 use Exporter;
  1         3  
  1         65  
18             @ISA = qw( Exporter );
19              
20             @EXPORT_OK = qw( stateml_1_0_ns stateml_1_0_graphviz_ns );
21              
22 1     1   6 use strict;
  1         9  
  1         79  
23              
24             =item stateml_1_0_ns
25              
26             The namespace for StateML 1.0:
27              
28             http://slaysys.com/StateML/1.0
29              
30             =cut
31              
32             sub stateml_1_0_ns () { "http://slaysys.com/StateML/1.0" }
33              
34             =item stateml_1_0_graphviz_ns
35              
36             The namespace for graphviz-specific attributes used in StateML 1.0 is:
37              
38             http://slaysys.com/StateML/1.0/GraphViz
39              
40             =cut
41              
42             sub stateml_1_0_graphviz_ns () { "http://slaysys.com/StateML/1.0/GraphViz" }
43              
44             =back
45              
46             =head1 LIMITATIONS
47              
48             =head1 COPYRIGHT
49              
50             Copyright 2003, R. Barrie Slaymaker, Jr., All Rights Reserved
51              
52             =head1 LICENSE
53              
54             You may use this module under the terms of the BSD, Artistic, or GPL licenses,
55             any version.
56              
57             =head1 AUTHOR
58              
59             Barrie Slaymaker
60              
61             =cut
62              
63             1;