The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

TBX::Min::Note - Store information from one TBX-Min tig element

VERSION

version 0.08

SYNOPSIS

    use TBX::Min::Note;
    my $note = TBX::Min::Note->new(
        {noteKey => "grammaticalGender", noteValue => 'male'});
    print $note->noteValue; # 'male'

DESCRIPTION

This class represents a single term group contained in a TBX-Min file. A term group contains a single term and information pertaining to it, such as part of speech, a note, or the associated customer.

METHODS

new

Creates a new TBX::Min::Note instance. Optionally you may pass in a hash reference which is used to initialized the object. The fields of the hash correspond to the names of the accessor methods listed below.

noteKey

Get or set a noteKey associated with this note group.

noteValue

Get or set a noteValue associated with this note group.

SEE ALSO

TBX::Min

AUTHOR

Nathan Glenn <garfieldnate@gmail.com>, James Hayes <james.s.hayes@gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2016 by Alan Melby.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.