eliminated more definitions

This commit is contained in:
JT Smith 2009-10-22 14:26:09 -05:00
parent fca4cfbbaf
commit 57b67ab4da
5 changed files with 108 additions and 96 deletions

View file

@ -403,6 +403,20 @@ sub getValue {
return $self->getValueFromPost;
}
#-------------------------------------------------------------------
=head2 getValueAsScalar
Returns the value as a scalar, which means for complex types it's returned as a serialized string of some sort.
=cut
sub getValueAsScalar {
my $self = shift;
return $self->getValue;
}
#-------------------------------------------------------------------
=head2 getOriginalValue ( )