logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

X12::Parser::Tree - Object structure representing the X12 cf file.

Author

       Prasad Poruporuthan, prasad@cpan.org

Description

       This module represents the cf file as a object structure. This class is used by the X12::Parser and
       X12::Parser::Cf. Unless you plan to modify the parser or such you would not need to access this class
       directly.

Name

       X12::Parser::Tree - Object structure representing the X12 cf file.

See Also

       X12::Parser, X12::Parser::Cf, X12::Parser::Readme

Synopsis

           use X12::Parser::Tree;

           #create a new Tree object
           my $node = X12::Parser::Tree->new();

           #set the name of the node/loop
           $node->set_name('1000A');

           #set the name of the parameters used to determine start of a loop
           $node->set_loop_start_parm('NM1', '41', 1);

           #create a new Tree object and set it as the child
           my $child_node = X12::Parser::Tree->new();
           $node->add_child($child_node);

See Also