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

NAME

DTA::CAB::Analyzer::Automaton::Gfsm - generic analysis automaton API: Gfsm automata

SYNOPSIS

 use DTA::CAB::Analyzer::Automaton::Gfsm;
 
 ##========================================================================
 ## Constructors etc.
 
 $aut = DTA::CAB::Analyzer::Automaton::Gfsm->new(%args);
 
 ##========================================================================
 ## Methods: Generic
 
 $class = $aut->fstClass();
 $class = $aut->labClass();
 $bool = $aut->fstOk();
 $bool = $aut->labOk();

DESCRIPTION

Globals

Variable: @ISA

DTA::CAB::Analyzer::Automaton::Gfsm inherits from DTA::CAB::Analyzer::Automaton.

Constructors etc.

new
 $obj = CLASS_OR_OBJ->new(%args);

See DTA::CAB::Analyzer::Automaton::new().

Methods: Generic

fstClass
 $class = $aut->fstClass();

Override: default FST class for loadFst() method.

labClass
 $class = $aut->labClass();

Override: default labels class for loadLabels() method

fstOk
 $bool = $aut->fstOk();

Override: should return false iff fst is undefined or "empty".

labOk
 $bool = $aut->labOk();

Override: should return false iff label-set is undefined or "empty"

AUTHOR

Bryan Jurish <moocow@cpan.org>

COPYRIGHT AND LICENSE

Copyright (C) 2009-2019 by Bryan Jurish

This package is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.24.1 or, at your option, any later version of Perl 5 you may have available.