blob: 7bf5e511338e5a9d291d9c0f16a09b42187a9136 [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
package Lucy::Search::RequiredOptionalQuery;
use Lucy;
1;
__END__
__BINDING__
my $synopsis = <<'END_SYNOPSIS';
my $foo_and_maybe_bar = Lucy::Search::RequiredOptionalQuery->new(
required_query => $foo_query,
optional_query => $bar_query,
);
my $hits = $searcher->hits( query => $foo_and_maybe_bar );
...
END_SYNOPSIS
my $constructor = <<'END_CONSTRUCTOR';
my $reqopt_query = Lucy::Search::RequiredOptionalQuery->new(
required_query => $foo_query, # required
optional_query => $bar_query, # required
);
END_CONSTRUCTOR
Clownfish::Binding::Perl::Class->register(
parcel => "Lucy",
class_name => "Lucy::Search::RequiredOptionalQuery",
bind_methods => [
qw( Get_Required_Query Set_Required_Query
Get_Optional_Query Set_Optional_Query )
],
bind_constructors => ["new"],
make_pod => {
methods => [
qw( get_required_query set_required_query
get_optional_query set_optional_query )
],
synopsis => $synopsis,
constructor => { sample => $constructor },
},
);