File Coverage

blib/lib/ODO/Ontology/Vocabulary.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             #
2             # Copyright (c) 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/Ontology/Vocabulary.pm,v $
10             # Created by: Stephen Evanchik( evanchik@us.ibm.com )
11             # Created on: 11/28/2006
12             # Revision: $Id: Vocabulary.pm,v 1.2 2009-11-25 17:58:25 ubuntu Exp $
13             #
14             # Contributors:
15             # IBM Corporation - initial API and implementation
16             #
17             package ODO::Ontology::Vocabulary;
18              
19 3     3   16 use strict;
  3         7  
  3         83  
20 3     3   14 use warnings;
  3         6  
  3         72  
21              
22 3     3   15 use base qw/ODO::Vocabulary/;
  3         5  
  3         1334  
23              
24 3     3   19 use vars qw /$VERSION/;
  3         7  
  3         206  
25             $VERSION = sprintf "%d.%02d", q$Revision: 1.2 $ =~ /: (\d+)\.(\d+)/;
26              
27             1;
28              
29             __END__