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

Last change on this file since 1319 was 1319, checked in by khartmann, 11 years ago
  • Reworked Filters to use the first instance of a task to provide type and target
  • Added a function to extract all tasks matching a given filter
  • Added simple console feedback for matched usability problems
  • Property svn:mime-type set to text/plain
File size: 3.6 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.KeyPressed;
24import de.ugoe.cs.autoquest.eventcore.gui.MouseButtonInteraction;
25import de.ugoe.cs.autoquest.eventcore.gui.MouseClick;
26import de.ugoe.cs.autoquest.eventcore.gui.MouseInteraction;
27import de.ugoe.cs.autoquest.eventcore.gui.Scroll;
28import de.ugoe.cs.autoquest.eventcore.gui.TextInput;
29import de.ugoe.cs.autoquest.tasktrees.treeifc.IEventTask;
30import de.ugoe.cs.autoquest.tasktrees.treeifc.IEventTaskInstance;
31import de.ugoe.cs.autoquest.tasktrees.treeifc.ITask;
32import de.ugoe.cs.autoquest.tasktrees.treeifc.ITaskInstance;
33
34/**
35 * <p>
36 * Event type filter for {@link EventTask}s.
37 * </p>
38 *
39 * @author Alexander Deicke
40 */
41public enum EventTypeFilter implements TaskFilter<IEventType> {
42
43        KEY_PRESSED(KeyPressed.class),
44       
45    MOUSE_BUTTON_INTERACTION(MouseButtonInteraction.class),
46
47    MOUSE_CLICK(MouseClick.class),
48
49    MOUSE_INTERACTION(MouseInteraction.class),
50
51    TEXT_INPUT(TextInput.class),
52
53    SCROLL(Scroll.class),
54
55    USER_INTERACTION(IInteraction.class);
56
57    private Class<? extends IEventType> eventTypeClazz;
58
59    private EventTypeFilter(Class<? extends IEventType> eventTypeClazz) {
60        this.eventTypeClazz = eventTypeClazz;
61    }
62
63    /*
64     * (non-Javadoc)
65     *
66     * @see de.ugoe.cs.autoquest.usability.tasktree.filters.TaskFilter#getId()
67     */
68    @SuppressWarnings("unchecked")
69    @Override
70    public Class<IEventType> clazz() {
71        return (Class<IEventType>) eventTypeClazz;
72    }
73
74    /*
75     * (non-Javadoc)
76     *
77     * @see de.ugoe.cs.autoquest.usability.tasktree.filters.TaskFilter#getId()
78     */
79    @SuppressWarnings("rawtypes")
80    @Override
81    public Predicate filterPredicate() {
82        Predicate<Object> instanceOfIEventTaskPredicate = Predicates.instanceOf(IEventTask.class);
83        Predicate<ITask> taskHoldsInstanceOfFilterArgument =
84            Predicates.compose(Predicates.instanceOf(eventTypeClazz), taskExtractionFunction());
85        return Predicates.and(instanceOfIEventTaskPredicate, taskHoldsInstanceOfFilterArgument);
86    }
87
88    /**
89     *
90     * <p>
91     * Gets the event type of a {@link ITask}.
92     * </p>
93     *
94     * @return event type
95     */
96    private Function<ITask, IEventType> taskExtractionFunction() {
97        return new Function<ITask, IEventType>() {
98
99            @Override
100            public IEventType apply(ITask task) {
101                // XXX: Use the type of the first instance provided
102                ITaskInstance firstInstance = task.getInstances().iterator().next();
103                return ((IEventTaskInstance) firstInstance).getEvent().getType();
104            }
105        };
106    }
107}
Note: See TracBrowser for help on using the repository browser.