performed javacscript:fix and worked on documentation
[taxeditor.git] / taxeditor-bulkeditor / src / main / java / eu / etaxonomy / taxeditor / bulkeditor / IBulkEditorQuery.java
1 // $Id$
2 /**
3 * Copyright (C) 2007 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10
11 package eu.etaxonomy.taxeditor.bulkeditor;
12
13 import java.util.Comparator;
14
15 import eu.etaxonomy.cdm.api.service.config.IIdentifiableEntityServiceConfigurator;
16
17 /**
18 * <p>IBulkEditorQuery interface.</p>
19 *
20 * @author p.ciardelli
21 * @created 19.08.2009
22 * @version 1.0
23 */
24 public interface IBulkEditorQuery {
25
26 /**
27 * <p>getSearchString</p>
28 *
29 * @return a {@link java.lang.String} object.
30 */
31 String getSearchString();
32
33 /**
34 * <p>getSearchConfigurator</p>
35 *
36 * @return a {@link eu.etaxonomy.cdm.api.service.config.IIdentifiableEntityServiceConfigurator} object.
37 */
38 IIdentifiableEntityServiceConfigurator getSearchConfigurator();
39
40 /**
41 * <p>getComparator</p>
42 *
43 * @return a {@link java.util.Comparator} object.
44 */
45 Comparator getComparator();
46 }