annotate Lib/IMPL/Class/MethodInfo.pm @ 156:8638dd1374bf

Added template property to IMPL::Web::QueryHandler::PageFormat (this allows to specify exact template (filename, ref to a scalar, ref to a file handle)).
author wizard
date Tue, 05 Oct 2010 17:20:51 +0400
parents 44977efed303
children 76515373dac0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
133
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents:
diff changeset
1 use strict;
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents:
diff changeset
2 package IMPL::Class::MethodInfo;
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents:
diff changeset
3
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents:
diff changeset
4 use base qw(IMPL::Class::MemberInfo);
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents:
diff changeset
5
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents:
diff changeset
6 __PACKAGE__->PassThroughArgs;
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents:
diff changeset
7
134
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
8 __PACKAGE__->mk_accessors(qw(
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
9 ReturnType
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
10 Parameters
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
11 ));
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
12
133
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents:
diff changeset
13 1;