line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# |
2
|
|
|
|
|
|
|
# Copyright (c) 2004-2006 IBM Corporation. |
3
|
|
|
|
|
|
|
# |
4
|
|
|
|
|
|
|
# All rights reserved. This program and the accompanying materials |
5
|
|
|
|
|
|
|
# are made available under the terms of the Eclipse Public License v1.0 |
6
|
|
|
|
|
|
|
# which accompanies this distribution, and is available at |
7
|
|
|
|
|
|
|
# http://www.eclipse.org/legal/epl-v10.html |
8
|
|
|
|
|
|
|
# |
9
|
|
|
|
|
|
|
# File: $Source: /var/lib/cvs/ODO/lib/ODO/Query/Simple/Result.pm,v $ |
10
|
|
|
|
|
|
|
# Created by: Stephen Evanchik( evanchik@us.ibm.com ) |
11
|
|
|
|
|
|
|
# Created on: 11/30/2004 |
12
|
|
|
|
|
|
|
# Revision: $Id: Result.pm,v 1.2 2009-11-25 17:53:53 ubuntu Exp $ |
13
|
|
|
|
|
|
|
# |
14
|
|
|
|
|
|
|
# Contributors: |
15
|
|
|
|
|
|
|
# IBM Corporation - initial API and implementation |
16
|
|
|
|
|
|
|
# |
17
|
|
|
|
|
|
|
package ODO::Query::Simple::Result; |
18
|
|
|
|
|
|
|
|
19
|
5
|
|
|
5
|
|
26
|
use strict; |
|
5
|
|
|
|
|
11
|
|
|
5
|
|
|
|
|
175
|
|
20
|
5
|
|
|
5
|
|
28
|
use warnings; |
|
5
|
|
|
|
|
12
|
|
|
5
|
|
|
|
|
112
|
|
21
|
|
|
|
|
|
|
|
22
|
5
|
|
|
5
|
|
26
|
use ODO::Exception; |
|
5
|
|
|
|
|
8
|
|
|
5
|
|
|
|
|
165
|
|
23
|
5
|
|
|
5
|
|
31
|
use ODO::Graph::Simple; |
|
5
|
|
|
|
|
10
|
|
|
5
|
|
|
|
|
227
|
|
24
|
5
|
|
|
5
|
|
31
|
use vars qw /$VERSION/; |
|
5
|
|
|
|
|
10
|
|
|
5
|
|
|
|
|
446
|
|
25
|
|
|
|
|
|
|
$VERSION = sprintf "%d.%02d", q$Revision: 1.2 $ =~ /: (\d+)\.(\d+)/; |
26
|
5
|
|
|
5
|
|
36
|
use base qw/ODO::Query::Result/; |
|
5
|
|
|
|
|
12
|
|
|
5
|
|
|
|
|
2972
|
|
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 NAME |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
ODO::Query::Simple::Result - Result set object for queries based on ODO::Query::Simple |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 SYNOPSIS |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 DESCRIPTION |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 METHODS |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=over |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=cut |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
sub init { |
44
|
130
|
|
|
130
|
1
|
3628
|
my ($self, $config) = @_; |
45
|
130
|
|
|
|
|
430
|
$self = $self->SUPER::init($config); |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
# TODO: Setup bound variables |
48
|
|
|
|
|
|
|
|
49
|
130
|
|
|
|
|
276
|
return $self; |
50
|
|
|
|
|
|
|
} |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=back |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head1 AUTHOR |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
IBM Corporation |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
=head1 COPYRIGHT |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
Copyright (c) 2004-2006 IBM Corporation. |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
All rights reserved. This program and the accompanying materials |
64
|
|
|
|
|
|
|
are made available under the terms of the Eclipse Public License v1.0 |
65
|
|
|
|
|
|
|
which accompanies this distribution, and is available at |
66
|
|
|
|
|
|
|
http://www.eclipse.org/legal/epl-v10.html |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=cut |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
1; |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
__END__ |