source: trunk/autoquest-core-usability-evaluation/src/main/java/de/ugoe/cs/autoquest/usability/taskmodel/filter/types/EventTypeFilter.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: 3.2 KB
Line 
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
15package de.ugoe.cs.autoquest.usability.taskmodel.filter.types;
16
17import com.google.common.base.Function;
18import com.google.common.base.Predicate;
19import com.google.common.base.Predicates;
20
21import de.ugoe.cs.autoquest.eventcore.IEventType;
22import de.ugoe.cs.autoquest.eventcore.gui.IInteraction;
23import de.ugoe.cs.autoquest.eventcore.gui.MouseButtonInteraction;
24import de.ugoe.cs.autoquest.eventcore.gui.MouseClick;
25import de.ugoe.cs.autoquest.eventcore.gui.MouseInteraction;
26import de.ugoe.cs.autoquest.eventcore.gui.Scroll;
27import de.ugoe.cs.autoquest.eventcore.gui.TextInput;
28import de.ugoe.cs.autoquest.tasktrees.treeifc.IEventTask;
29import de.ugoe.cs.autoquest.tasktrees.treeifc.ITask;
30
31/**
32 * <p>
33 * Event type filter for {@link EventTask}s.
34 * </p>
35 *
36 * @author Alexander Deicke
37 */
38public enum EventTypeFilter implements TaskFilter<IEventType> {
39
40    MOUSE_BUTTON_INTERACTION(MouseButtonInteraction.class),
41
42    MOUSE_CLICK(MouseClick.class),
43
44    MOUSE_INTERACTION(MouseInteraction.class),
45
46    TEXT_INPUT(TextInput.class),
47
48    SCROLL(Scroll.class),
49
50    USER_INTERACTION(IInteraction.class);
51
52    private Class<? extends IEventType> eventTypeClazz;
53
54    private EventTypeFilter(Class<? extends IEventType> eventTypeClazz) {
55        this.eventTypeClazz = eventTypeClazz;
56    }
57
58    /*
59     * (non-Javadoc)
60     *
61     * @see de.ugoe.cs.autoquest.usability.tasktree.filters.TaskFilter#getId()
62     */
63    @SuppressWarnings("unchecked")
64    @Override
65    public Class<IEventType> clazz() {
66        return (Class<IEventType>) eventTypeClazz;
67    }
68
69    /*
70     * (non-Javadoc)
71     *
72     * @see de.ugoe.cs.autoquest.usability.tasktree.filters.TaskFilter#getId()
73     */
74    @SuppressWarnings("rawtypes")
75    @Override
76    public Predicate filterPredicate() {
77        Predicate<Object> instanceOfIEventTaskPredicate = Predicates.instanceOf(IEventTask.class);
78        Predicate<ITask> taskHoldsInstanceOfFilterArgument =
79            Predicates.compose(Predicates.instanceOf(eventTypeClazz), taskExtractionFunction());
80        return Predicates.and(instanceOfIEventTaskPredicate, taskHoldsInstanceOfFilterArgument);
81    }
82
83    /**
84     *
85     * <p>
86     * Gets the event type of a {@link ITask}.
87     * </p>
88     *
89     * @return event type
90     */
91    private Function<ITask, IEventType> taskExtractionFunction() {
92        return new Function<ITask, IEventType>() {
93
94            @Override
95            public IEventType apply(ITask task) {
96                return ((IEventTask) task).getEventType();
97            }
98        };
99    }
100}
Note: See TracBrowser for help on using the repository browser.