File Coverage

blib/lib/WE/Obj/FolderRestr.pm
Criterion Covered Total %
statement 9 11 81.8
branch n/a
condition n/a
subroutine 3 5 60.0
pod 2 2 100.0
total 14 18 77.7


line stmt bran cond sub pod time code
1             # -*- perl -*-
2              
3             #
4             # $Id: FolderRestr.pm,v 1.2 2005/02/03 00:06:28 eserte Exp $
5             # Author: Slaven Rezic
6             #
7             # Copyright (C) 2001 Online Office Berlin. All rights reserved.
8             # Copyright (C) 2002,2005 Slaven Rezic.
9             # This is free software; you can redistribute it and/or modify it under the
10             # terms of the GNU General Public License, see the file COPYING.
11              
12             #
13             # Mail: slaven@rezic.de
14             # WWW: http://we-framework.sourceforge.net
15             #
16              
17             package WE::Obj::FolderRestr;
18              
19 1     1   1739 use base qw(WE::Obj::FolderObj);
  1         2  
  1         91  
20              
21 1     1   6 use strict;
  1         2  
  1         29  
22 1     1   6 use vars qw($VERSION);
  1         9  
  1         113  
23             $VERSION = sprintf("%d.%02d", q$Revision: 1.2 $ =~ /(\d+)\.(\d+)/);
24              
25 0     0 1   sub instantiable { 1 }
26              
27 0     0 1   sub insertable_types { [qw(WE::Obj::Folder
28             WE::Obj::Sequence
29             WE::Obj::LangCluster
30             WE::Obj::Doc
31             )] }
32              
33             1;
34              
35             __END__