<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"># Copyrights 1995-2010 by Mark Overmeer &lt;perl@overmeer.net&gt;.
#  For other contributors see ChangeLog.
# See the manual pages for details on the licensing terms.
# Pod stripped from pm file by OODoc 1.06.
package Mail::Field::Generic;
use vars '$VERSION';
$VERSION = '2.07';


use Carp;
use base 'Mail::Field';


sub create
{   my ($self, %arg) = @_;
    $self-&gt;{Text} = delete $arg{Text};

    croak "Unknown options " . join(",", keys %arg)
       if %arg;

    $self;
}


sub parse
{   my $self = shift;
    $self-&gt;{Text} = shift || "";
    $self;
}

sub stringify { shift-&gt;{Text} }

1;
</pre></body></html>