Fixed email address to gmail address
[p5sagit/Excel-Template.git] / lib / Excel / Template / Container / Locked.pm
CommitLineData
d0eafc11 1package Excel::Template::Container::Locked;
2
3use strict;
4
5BEGIN {
6 use vars qw(@ISA);
7 @ISA = qw( Excel::Template::Container::Format );
8
9 use Excel::Template::Container::Format;
10}
11
12sub new
13{
14 my $class = shift;
15 my $self = $class->SUPER::new(@_);
16
17 $self->{LOCKED} = 1;
18
19 return $self;
20}
21
221;
23__END__
24
25=head1 NAME
26
27Excel::Template::Container::Locked - Excel::Template::Container::Locked
28
29=head1 PURPOSE
30
31To format all children in locked
32
33=head1 NODE NAME
34
35LOCKED
36
37=head1 INHERITANCE
38
39Excel::Template::Container::Format
40
41=head1 ATTRIBUTES
42
43None
44
45=head1 CHILDREN
46
47None
48
49=head1 EFFECTS
50
51None
52
53=head1 DEPENDENCIES
54
55None
56
57=head1 USAGE
58
59 <locked>
60 ... Children here
61 </locked>
62
63In the above example, the children will be displayed (if they are displaying
64elements) in a locked format. All other formatting will remain the same and the
65"locked"-ness will end at the end tag.
66
67=head1 AUTHOR
68
c09684ff 69Rob Kinyon (rob.kinyon@gmail.com)
d0eafc11 70
71=head1 SEE ALSO
72
73FORMAT
74
75=cut