source: trunk/autoquest-core-usability-evaluation/src/main/java/de/ugoe/cs/autoquest/usability/taskmodel/filter/types/TaskFilter.java @ 1217

Last change on this file since 1217 was 1217, checked in by adeicke, 11 years ago
  • Added proper formating and JavaDoc?.
  • Several renaming refactorings.
  • Property svn:mime-type set to text/plain
File size: 1.3 KB
RevLine 
[1040]1//   Copyright 2012 Georg-August-Universität Göttingen, Germany
2//
3//   Licensed under the Apache License, Version 2.0 (the "License");
4//   you may not use this file except in compliance with the License.
5//   You may obtain a copy of the License at
6//
7//       http://www.apache.org/licenses/LICENSE-2.0
8//
9//   Unless required by applicable law or agreed to in writing, software
10//   distributed under the License is distributed on an "AS IS" BASIS,
11//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12//   See the License for the specific language governing permissions and
13//   limitations under the License.
14
[1217]15package de.ugoe.cs.autoquest.usability.taskmodel.filter.types;
[1030]16
17import com.google.common.base.Predicate;
18
[1040]19/**
20 * <p>
[1217]21 * A task filter allows to filter a collection of tasks, considering a provided predicate.
[1040]22 * </p>
23 *
24 * @author Alexander Deicke
25 */
[1152]26public interface TaskFilter<T> {
[1030]27
[1217]28    /**
29     *
30     * <p>
31     * {@link Class} of type or property, which is used to filter tasks.
32     * </p>
33     *
34     * @return
35     */
[1030]36    public Class<T> clazz();
[1040]37
[1217]38    /**
39     *
40     * <p>
41     * Provides predicate to filter tasks.
42     * </p>
43     *
44     * @return
45     */
[1030]46    @SuppressWarnings("rawtypes")
47    public Predicate filterPredicate();
[1040]48
[1030]49}
Note: See TracBrowser for help on using the repository browser.