File Coverage

blib/lib/WSST/SchemaParser.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 WSST::SchemaParser;
2              
3 3     3   45581 use strict;
  3         6  
  3         101  
4 3     3   1549 use WSST::Schema;
  3         8  
  3         191  
5              
6             our $VERSION = '0.1.1';
7              
8             sub types;
9              
10             sub parse;
11              
12             =head1 NAME
13              
14             WSST::SchemaParser - SchemaParser interface of WSST
15              
16             =head1 DESCRIPTION
17              
18             SchemaParser is interface of schema file parser.
19              
20             =head1 METHODS
21              
22             =head2 types
23              
24             Returns file types supported by parser.
25              
26             =head2 parse
27              
28             Parses schema file, and returns Schema object.
29              
30             =head1 SEE ALSO
31              
32             http://code.google.com/p/wsst/
33              
34             =head1 AUTHORS
35              
36             Mitsuhisa Oshikawa
37             Yusuke Kawasaki
38              
39             =head1 COPYRIGHT AND LICENSE
40              
41             Copyright 2008 WSS Project Team
42              
43             =cut
44             1;