# Auto-generated file -- DO NOT EDIT!!!!! =head1 NAME KinoSearch::Search::PhraseQuery - Query matching an ordered list of terms. =head1 SYNOPSIS my $phrase_query = KinoSearch::Search::PhraseQuery->new( field => 'content', terms => [qw( the who )], ); my $hits = $searcher->hits( query => $phrase_query ); =head1 DESCRIPTION PhraseQuery is a subclass of L for matching against an ordered sequence of terms. =head1 CONSTRUCTORS =head2 new( I<[labeled params]> ) =over =item * B - The field that the phrase must occur in. =item * B - The ordered array of terms that must match. =back =head1 METHODS =head2 get_field() Accessor for object's field attribute. =head2 get_terms() Accessor for object's array of terms. =head1 INHERITANCE KinoSearch::Search::PhraseQuery isa L isa L. =head1 COPYRIGHT AND LICENSE Copyright 2005-2010 Marvin Humphrey This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut