01: /*
02: * Copyright 2004 Outerthought bvba and Schaubroeck nv
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16: package org.outerj.daisy.repository.schema;
17:
18: import org.outerx.daisy.x10.QuerySelectionListDocument;
19: import org.outerj.daisy.repository.query.SortOrder;
20:
21: /**
22: * A query-based selection list implementation. It works by executing the
23: * query and taking the distinct set of values of the first
24: * selected value.
25: *
26: * <p>This selection list is created on a field type through
27: * {@link FieldType#createQuerySelectionList}.
28: */
29: public interface QuerySelectionList extends SelectionList {
30: String getQuery();
31:
32: SortOrder getSortOrder();
33:
34: void setQuery(String query);
35:
36: void setSortOrder(SortOrder sortOrder);
37:
38: boolean getFilterVariants();
39:
40: void setFilterVariants(boolean filterVariants);
41:
42: QuerySelectionListDocument getXml();
43: }
|