NAME
TBX::Min::LangGroup - Store information from one TBX-Min langGroup element
VERSION
version 0.02
SYNOPSIS
use TBX::Min::LangGroup;
use TBX::Min::TermGroup;
my $lang_grp = TBX::Min::LangGroup->new(
{code => 'en'});
print $lang_grp->lang(); # 'en'
my $term_grp = TBX::Min::TermGroup->new({term => 'perl'});
$lang_grp->add_term_group($term_grp);
my $term_grps = $lang_grp->term_groups;
print $#$term_grps; # '1'
DESCRIPTION
This class represents a single language group contained in a TBX-Min file. A language group is contained by a concept entry, and contains several term groups each representing a given concept for the same language.
METHODS
new
Creates a new TBX::Min::LangGroup instance. Optionally you may pass in a hash reference which is used to initialize the object. The allowed hash fields are code and term_groups, where code corresponds to the method of the same name, and term_groups is an array reference containing TBX::Min::LangGroup objects.
code
Get or set the language group language code (should be ISO 639 and 3166, e.g. en-US, de, etc.).
term_groups
Returns an array ref containing all of the TBX::Min::TermGroup objects in this concept entry. The array ref is the same one used to store the objects internally, so additions or removals from the array will be reflected in future calls to this method.
add_term_group
Adds the input TBX::Min::TermGroup object to the list of language groups contained by this object.
SEE ALSO
AUTHOR
Nathan Glenn <garfieldnate@gmail.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2013 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.