source: trunk/autoquest-core-usability-evaluation/src/main/java/de/ugoe/cs/autoquest/usability/tasktree/filters/EventTypeFilter.java @ 1150

Last change on this file since 1150 was 1150, checked in by adeicke, 11 years ago

Added usage patterns and mechanism for detecting them.

  • Property svn:mime-type set to text/plain
File size: 2.9 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.tasktree.filters;
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.ITaskTreeNode;
30
31/**
32 * <p>
33 * TODO comment
34 * </p>
35 *
36 * @author Alexander Deicke
37 */
38public enum EventTypeFilter implements TaskTreeNodeFilter<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    @SuppressWarnings("unchecked")
59    @Override
60    public Class<IEventType> clazz() {
61        return (Class<IEventType>) eventTypeClazz;
62    }
63
64    @SuppressWarnings("rawtypes")
65    @Override
66    public Predicate filterPredicate() {
67        Predicate<Object> instanceOfIEventTaskPredicate = Predicates.instanceOf(IEventTask.class);
68        Predicate<ITaskTreeNode> nodeHoldsInstanceOfFilterArgument =
69            Predicates.compose(Predicates.instanceOf(eventTypeClazz), nodeExtractionFunction());
70        return Predicates.and(instanceOfIEventTaskPredicate, nodeHoldsInstanceOfFilterArgument);
71    }
72
73    private Function<ITaskTreeNode, IEventType> nodeExtractionFunction() {
74        return new Function<ITaskTreeNode, IEventType>() {
75
76            @Override
77            public IEventType apply(ITaskTreeNode treeNode) {
78                return ((IEventTask) treeNode).getEventType();
79            }
80        };
81    }
82}
Note: See TracBrowser for help on using the repository browser.