File Coverage

blib/lib/Lingua/YaTeA/ParsingPattern.pm
Criterion Covered Total %
statement 40 55 72.7
branch n/a
condition n/a
subroutine 12 16 75.0
pod 10 10 100.0
total 62 81 76.5


line stmt bran cond sub pod time code
1             package Lingua::YaTeA::ParsingPattern;
2 5     5   44 use strict;
  5         11  
  5         135  
3 5     5   31 use warnings;
  5         17  
  5         133  
4              
5 5     5   2192 use Lingua::YaTeA::NodeSet;
  5         13  
  5         84  
6 5     5   2408 use Lingua::YaTeA::InternalNode;
  5         16  
  5         66  
7 5     5   2491 use Lingua::YaTeA::RootNode;
  5         14  
  5         48  
8 5     5   2084 use Lingua::YaTeA::PatternLeaf;
  5         13  
  5         62  
9             # use Data::Dumper;
10            
11             our $VERSION=$Lingua::YaTeA::VERSION;
12              
13             sub new
14             {
15 280     280 1 750 my ($class,$parse,$pos_sequence,$node_set,$priority,$direction,$num_content_words,$num_line) = @_;
16 280         487 my $this = {};
17 280         518 bless ($this,$class);
18 280         634 $this->{PARSE} = $parse;
19 280         580 $this->{PRIORITY} = $priority;
20 280         481 $this->{PARSING_DIRECTION} = $direction;
21 280         452 $this->{DECLARATION_LINE} = $num_line;
22 280         482 $this->{POS_SEQUENCE} = $pos_sequence;
23 280         500 $this->{NODE_SET} = $node_set;
24 280         460 $this->{CONTENT_WORDS} = $num_content_words;
25 280         616 return $this;
26             }
27              
28             sub setNodeSet
29             {
30 0     0 1 0 my ($this,$node_set) = @_;
31 0         0 $this->{NODE_SET} = $node_set;
32             }
33              
34              
35              
36             sub getParse
37             {
38 0     0 1 0 my ($this) = @_;
39 0         0 return $this->{PARSE};
40             }
41              
42              
43             sub getLength
44             {
45 64     64 1 143 my ($this) = @_;
46 64         170 my @array = split (/ /, $this->getPOSSequence);
47 64         271 return scalar @array;
48             }
49              
50              
51             sub getPriority
52             {
53 0     0 1 0 my ($this) = @_;
54 0         0 return $this->{PRIORITY};
55             }
56              
57             sub getDirection
58             {
59 4     4 1 11 my ($this) = @_;
60 4         28 return $this->{PARSING_DIRECTION};
61             }
62              
63             sub getNodeSet
64             {
65 110     110 1 241 my ($this) = @_;
66 110         537 return $this->{NODE_SET};
67             }
68              
69             sub getNumContentWords
70             {
71 4     4 1 18 my ($this) = @_;
72 4         42 return $this->{CONTENT_WORDS};
73             }
74              
75             sub getPOSSequence
76             {
77 624     624 1 1095 my ($this) = @_;
78 624         1769 return $this->{POS_SEQUENCE};
79             }
80              
81             sub print
82             {
83 0     0 1   my ($this) = @_;
84            
85 0           print "\t[\n";
86 0           print "\tPARSE: " . $this->getParse . "\n";
87 0           print "\tPOS: " . $this->getPOSSequence . "\n";
88 0           print "\tPRIORITY: " . $this->getPriority . "\n";
89 0           print "\tPARSING_DIRECTION: " . $this->getDirection . "\n";
90 0           print "\tNODE_SET: \n";
91 0           $this->getNodeSet->print;
92 0           print "]\n";
93             }
94              
95              
96             1;
97              
98              
99             __END__